Results 17 comments of TimonKK

I tried with last version of driver (0.1.27), but nothing changed

Hello, yes you can use HTTP port 8123. I am interacting with ClickHouse through HTTP port and I am happy

The driver uses all dialects because clickhouse has backward compatibility. Do you have some problems with clickhouse features?

Hi, could you please to update your PR. And I will publish fixes to npm

Could you please to show code example with this bug?

Able to you add some test for null insert?

Do you sure what timeout is in nodejs? Maybe http-session is droped by web server like nginx?

In code ```javascript cb(null, JSON.stringify(chunk)); ``` you pass data as JSON. But internal format is TSV. So If you pass like ```javasciprt cb(null, [chunk.eventDate, chunk.eventDateTime, data.numericValue].join('\t')); ``` it must work

You can use with IN [external data](https://clickhouse.yandex/docs/en/operations/table_engines/external_data/), and in query like [this](https://github.com/TimonKK/clickhouse/blob/master/test/test.js#L271)

Use POST is not problem. But into each tools exists some techniques for resolve regular problems. For too long IN - external data. First a wall, test `npm run test`...