Versions Compared

Key

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

...

Note
titleImportant

Every UDF's evaluate method is one row at a time! This means if your UDFs has complex code, it could introduce performance issue in execution time.

To have an understanding of the UDF's let's start with one example to have an understanding of the execution pattern. 

Code Block
languagesql
titleUDF's in action
SELECT length(string_col) FROM table_name;