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

    Type Alias Limit

    Represent a LIMIT clause that restricts the number of returned rows.

    type Limit = {
        comments?: string[];
        percent?: boolean;
        this: Expression;
    }
    Index

    Properties

    comments?: string[]

    Comments from before the LIMIT keyword (emitted after the limit value)

    percent?: boolean

    Whether PERCENT modifier is present (DuckDB: LIMIT 10 PERCENT)

    The limit count expression.