Skip to content

Commit

Permalink
fix: change clickhouse client back to web version (#1736)
Browse files Browse the repository at this point in the history
  • Loading branch information
callicles authored Sep 11, 2024
1 parent 1060acb commit c4bbf20
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion packages/ts-moose-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build": "tsup"
},
"dependencies": {
"@clickhouse/client": "1.5.0",
"@clickhouse/client-web": "1.5.0",
"fastq": "1.17.1",
"kafkajs": "2.2.4",
"ts-patch": "~3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-moose-lib/src/commons.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createClient } from "@clickhouse/client";
import { createClient } from "@clickhouse/client-web";
import fs from "node:fs";
import path from "node:path";
import http from "http";
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-moose-lib/src/consumption-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @returns 'FLoat', 'Int', 'Bool', 'String'
*/

import { ClickHouseClient } from "@clickhouse/client";
import { ClickHouseClient } from "@clickhouse/client-web";

export const mapToClickHouseType = (value: Value) => {
if (typeof value === "number") {
Expand Down
19 changes: 9 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c4bbf20

Please sign in to comment.