Databricks SDK for JavaScript
    Preparing search index...

    Interface SyncedTable_SyncedTableSpec_ExtraColumn

    An extra PostgreSQL column to add to the synced table.

    interface SyncedTable_SyncedTableSpec_ExtraColumn {
        columnName?: string;
        columnType?: string;
        compute?: string;
        maintenance?: SyncedTable_SyncedTableSpec_ExtraColumn_Maintenance;
    }
    Index

    Properties

    columnName?: string

    Name of the column.

    columnType?: string

    PostgreSQL type of the column, for example "tsvector" or "vector(1024)".

    compute?: string

    SQL expression used to compute the column's value, for example "to_tsvector('english', content)".