SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface PostgresViewDefinition

    interface PostgresViewDefinition {
        name: string;
        selectSql: string;
        columns?: string[];
        ifNotExists?: boolean;
        replace?: boolean;
        temporary?: boolean;
        materialized?: boolean;
        withNoData?: boolean;
    }
    Index

    Properties

    name: string
    selectSql: string
    columns?: string[]
    ifNotExists?: boolean
    replace?: boolean
    temporary?: boolean
    materialized?: boolean
    withNoData?: boolean