node-clickhouse icon indicating copy to clipboard operation
node-clickhouse copied to clipboard

Yandex ClickHouse driver for nodejs

Results 30 node-clickhouse issues
Sort by recently updated
recently updated
newest added

It's a common thing when dealing with streams to wrap them with a pipeline like so: ```javascript const { pipeline } = require('stream'); const { promisify } = require('util'); const...

Hi, I'm trying to encode a query that uses external data. Here's an example. 'values' are external data and must be supplied as form data. SELECT number FROM numbers(20) WHERE...

We are using node-clickhouse and creating batches of insert values like INSERT INTO .... values (), (), ()... and so on. After a certain batch size, the database starts to...

is this library supports brotli compression?

For example SQL: --admin SELECT date_time, app_id FROM basic.basic_day_all limit 2` execute SQL to return underfind, Query source code is found to be a problem with this code: if (chQuery.match...

From a real-world production scenario, we've found the current implementation of `httpRequest` in [clickhouse.js](https://github.com/apla/node-clickhouse/blob/master/src/clickhouse.js#L172) is a bit too complicated. It handles both reads (select) and writes (insert). That makes the...

WATCH queries are used with LIVE VIEWS. They work like a select statement. I am using LIVE VIEWS and it took me forever to figure out why results were not...

**Topic open to community of this module** This topic is just to a discussion about the stream flow so we users can understand better the way this plugin handle stream...

Bumps [codecov](https://github.com/codecov/codecov-node) from 2.3.1 to 3.7.1. Release notes Sourced from codecov's releases. v3.6.4 Fix for Cirrus CI v3.6.3 AWS Codebuild fixes + package updates v3.6.2 command line args sanitised v3.6.1...

dependencies

hi It failed when using `with totals` in query version v1.6.2 sql ``` select sum(1) from tables group by name with totals ``` query options ``` { dataObjects: true, syncParser:...

question