UNPKG

@uwdata/mosaic-sql

Version:

SQL query construction and analysis.

18 lines 542 B
import { ExprNode } from './node.js'; export declare class CollateNode extends ExprNode { /** The expression to collate. */ readonly expr: ExprNode; /** The collation type. */ readonly collation: string; /** * Instantiate a collate node. * @param expr The expression to collate. * @param collation The collation type. */ constructor(expr: ExprNode, collation: string); /** * Generate a SQL query string for this node. */ toString(): string; } //# sourceMappingURL=collate.d.ts.map