Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: link CREATE FUNCTION ... USING JAR to HIVE-6380 and link CREATE FUNCTION to DDL doc

...

Code Block
hive> list jars;
my_jar.jar

As of Hive 0.13, UDFs also have the option of of being able to specify required jars in the CREATE FUNCTION statement:

Code Block
CREATE FUNCTION myfunc AS 'myclass' USING JAR 'hdfs:///path/to/jar';

...