dynamodb-partiql-parser - v0.1.1
    Preparing search index...

    Interface CastExpression

    interface CastExpression {
        command: "CAST" | "CONVERT";
        kind: "cast_expression";
        range: Range;
        source: Expression;
        targetType?: Identifier | QuotedIdentifier;
    }

    Hierarchy (View Summary)

    Index
    command: "CAST" | "CONVERT"
    kind: "cast_expression"
    range: Range
    source: Expression