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 table columns or literals to be passed as additional arguments to a row filter function, carrying the type (column reference vs constant literal) of each argument. Deprecated: use input_column_names instead.

    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.