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

    Interface SchemaValidationOptions

    Options for schema-aware validation.

    interface SchemaValidationOptions {
        checkReferences?: boolean;
        checkTypes?: boolean;
        semantic?: boolean;
        strict?: boolean;
        strictSyntax?: boolean;
    }
    Index

    Properties

    checkReferences?: boolean

    Check FK/reference integrity and JOIN/reference quality.

    false
    
    checkTypes?: boolean

    Check column types in expressions for compatibility.

    false
    
    semantic?: boolean

    Enable semantic validation rules in addition to schema checks.

    false
    
    strict?: boolean

    Treat unknown identifiers as errors (true) or warnings (false). Overrides Schema.strict if provided.

    true
    
    strictSyntax?: boolean

    Enable strict syntax checks in addition to schema/type/reference checks. Rejects permissive parse forms such as trailing commas before clause boundaries.

    false