Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HIVEql statement for listing all available functions

Tags:

sql

hive

hiveql

At my work we are limited in which functions are available in our HIVEql environment. Is there a statement that can be run that will list all of the available functions? For example:

SELECT * FROM all_available_functions;

like image 696
statsNoob Avatar asked Oct 15 '25 17:10

statsNoob


1 Answers

You can use SHOW FUNCTIONS command. It will list all Hive functions and operators.

hive>SHOW FUNCTIONS;
hive>DESCRIBE FUNCTION <function_name>;
hive>DESCRIBE FUNCTION EXTENDED <function_name>;
like image 59
Nishu Tayal Avatar answered Oct 17 '25 08:10

Nishu Tayal