prorm API Reference
    Preparing search index...

    Interface RefreshOptions

    Options for refreshing a materialized view

    interface RefreshOptions {
        concurrently?: boolean;
        withNoData?: boolean;
        schema?: string;
        refresh?: RefreshMethod;
    }
    Index
    concurrently?: boolean

    If true, uses CONCURRENTLY (requires unique index on the view) - PostgreSQL only

    withNoData?: boolean

    If true, uses WITH NO DATA (creates view without populating data)

    schema?: string

    Schema name for the materialized view

    refresh?: RefreshMethod

    Refresh method: FAST, COMPLETE, or FORCE (Oracle)