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

    Interface ValidationResult

    Result of validating SQL.

    interface ValidationResult {
        errors: ValidationError[];
        valid: boolean;
    }
    Index

    Properties

    Properties

    errors: ValidationError[]

    List of validation errors and warnings

    valid: boolean

    Whether the SQL is valid (no errors, warnings are allowed)