node-clickhouse
node-clickhouse copied to clipboard
Yandex ClickHouse driver for nodejs
Is there an actively maintained fork?
Typings are true only after https://github.com/apla/node-clickhouse/pull/35
When the dynamic parameter of Uint64 exists in SQL, it returns null For example(JS): const a = 2121212121212; (uint64,RPC for c++,The back-end interface is dynamically distributed to the front-end) const...
The new version of ClickHouse changes the format of the error. For example this error ``` Code: 440. DB::Exception: The value -1 of LIMIT expression is not representable as UInt64....
I was trying to sending an INSERT query with a JSONEachRow format and any of my attempts failed. While debugging I found two problems: The line https://github.com/apla/node-clickhouse/blob/5ac5a8fd3dbc8a0888a3513f4d2c4e5485c68f9c/src/clickhouse.js#L272 overrides the `options.format...
Hi. Can you please approve my pull request #81 for receiving compressed data from Clickhouse?
I'm trying to run a simple query, this is the whole code: ``` const ClickHouse = require('@apla/clickhouse'); var fs = require('fs'); const ch = new ClickHouse({ host, port, user, password...
var stream = ch.query ("SELECT 1 FORMAT CSV"); // or var stream = ch.query ("SELECT 1",format: 'CSV'); stream.on ('data', function (row) { console.log(row); }); not work return nothing when var...
Do you guys have types available for the extension?