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

    Interface SchemaValidationOptions

    Options for schema-aware validation.

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

    Properties

    checkReferences?: boolean

    Check foreign key references in JOIN conditions.

    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