...
ALTER INDEX ... REBUILD builds an index that was created using the WITH DEFERRED REBUILD clause, or rebuilds a previously built index. If PARTITION is specified, only that partition is rebuilt.
Create/Drop/Reload Function
Temporary Functions
Create Temporary Function
...
DROP returns an error if the function doesn't exist, unless IF EXISTS is specified or the configuration variable hive.exec.drop.ignorenonexistent is set to true.
Reload Function
Info | ||
---|---|---|
| ||
As of Hive 1.2.0 (HIVE-2573). |
Code Block |
---|
RELOAD FUNCTION; |
As of HIVE-2573, creating permanent functions in one Hive CLI session may not be reflected in HiveServer2 or other Hive CLI sessions, if they were started before the function was created. Issuing RELOAD FUNCTION within a HiveServer2 or HiveCLI session will allow it to pick up any changes to the permanent functions that may have been done by a different HiveCLI session.
Create/Drop/Grant/Revoke Roles and Privileges
...