Documentation
    Preparing search index...

    Interface PostgresDialectOptions

    interface PostgresDialectOptions {
        clientMinMessages?: string | boolean;
        native?: boolean;
        pgModule?: __module;
        standardConformingStrings?: boolean;
    }
    Index
    clientMinMessages?: string | boolean

    The PostgreSql client_min_messages session parameter. Set explicitly to false to not override the database's default. Redshift does not support this parameter, it is important to set this option to false when connecting to Redshift.

    'warning'
    
    native?: boolean

    Defines whether the native library shall be used or not. If true, you need to have pg-native installed.

    false
    
    pgModule?: __module

    The pg library to use. If not provided, the pg npm library will be used. Must be compatible with the pg npm library API.

    Using this option should only be considered as a last resort, as the Sequelize team cannot guarantee its compatibility.

    standardConformingStrings?: boolean

    The PostgreSQL standard_conforming_strings session parameter. Set to false to not set the option. WARNING: Setting this to false may expose vulnerabilities and is not recommended!

    true