Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

UDFUDAFUDTF
It is a function that receives only a single row as an input and returns a single row as an output.
Like: length, or round functions
Extend class: UDF
org.apache.hadoop.hive.ql.exec.UDF;
It is a function that receives multiple rows as input and returns a single row as output.
Like: Count, Min, Max

It is a function that receives a single row as input and returns multiple rows - result set or table - as output.
Like: exploed, parse_url_tuple

...