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

    Class WindowDefBuilder

    Builder for named WINDOW clause definitions.

    Used with SelectBuilder.window() to define reusable window specifications.

    const w = new WindowDefBuilder()
    .partitionBy('dept')
    .orderBy(col('salary').desc());
    const sql = select('id').from('t').window('w', w).toSql();
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Free the underlying WASM handle.

      Returns void