Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add permanent UDFs, link to HIVE-6047 and DDL doc

...

For a more involved example, see this page.

As of Hive 0.13, you can register your function as a permanent UDF either in the current database or in a specified database, as described in Permanent Functions. For example:

Code Block
create function my_db.my_lower as 'com.example.hive.udf.Lower';

Deploying Jars for User Defined Functions and User Defined SerDes

...