(client: ClickHouseClient, timezone?: string)
| 691 | |
| 692 | // Helper function to create a new query |
| 693 | export function clix(client: ClickHouseClient, timezone?: string): Query { |
| 694 | return new Query(client, timezone ?? 'UTC'); |
| 695 | } |
| 696 | |
| 697 | clix.exp = (expr: string | Query<any>) => |
| 698 | new Expression(expr instanceof Query ? expr.toSQL() : expr); |
no outgoing calls