Databricks SDK for JavaScript
    Preparing search index...
    interface RowFilter {
        functionName?: string;
        inputArguments?: PolicyFunctionArgument[];
        inputColumnNames?: string[];
    }
    Index

    Properties

    functionName?: string

    The full name of the row filter SQL UDF.

    inputArguments?: PolicyFunctionArgument[]

    The list of additional table columns or literals to be passed as additional arguments to a row filter function. This is the replacement of the deprecated input_column_names field and carries information about the types (alias or constant) of the arguments to the filter function.

    inputColumnNames?: string[]

    The list of table columns to be passed as input to the row filter function. The column types should match the types of the filter function arguments.