Databricks SDK for JavaScript
    Preparing search index...
    interface RowFilterOptions {
        functionName?: string;
        using?: FunctionArgument[];
    }
    Index

    Properties

    functionName?: string

    The fully qualified name of the row filter function. The function is called on each row of the target table. It should return a boolean value indicating whether the row should be visible to the user. Required on create and update.

    Optional list of column aliases or constant literals to be passed as arguments to the row filter function. The type of each column should match the positional argument of the row filter function.