UNPKG

@uwdata/mosaic-sql

Version:

SQL query construction and analysis.

12 lines 437 B
import { CollateNode } from '../ast/collate.js'; import { asNode } from '../util/ast.js'; /** * Indicate ascending sort order for an expression. * @param expr The expression to collate. * @param collation The collation type, such as * 'NOCASE', 'NOACCENT', 'NFC', or locale-specific collations. */ export function collate(expr, collation) { return new CollateNode(asNode(expr), collation); } //# sourceMappingURL=collate.js.map