Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Interface ValidationOptions

    Options for SQL validation.

    interface ValidationOptions {
        dialectStrict?: boolean;
        semantic?: boolean;
    }
    Index

    Properties

    dialectStrict?: boolean

    Enable dialect-specific validation rules. When true, additional dialect-specific rules are applied.

    false
    
    semantic?: boolean

    Enable semantic validation in addition to syntax checking. Semantic validation checks for issues like SELECT * usage, aggregate functions without GROUP BY, etc.

    false