usql.functions (U-SQL)
Summary
Contains one row per function belonging to the schemas in the current database context.
Column name | Data type | Description |
---|---|---|
<inherited columns> | For a list of columns that this view inherits, see usql.objects. | |
is_user_defined | bool | Indicates if it is a user defined function |
definition | string | Function's definition (if available) |
Examples
The examples can be executed in Visual Studio with the Azure Data Lake Tools plug-in.
Query the usql.functions view
USE TestReferenceDB;
OUTPUT usql.functions
TO "/ReferenceGuide/CatalogViews/functions.txt"
USING Outputters.Tsv(outputHeader:true);