fix(core): update
This commit is contained in:
parent
63dcf3ff4b
commit
cbc7b5a4a7
21
test/test.ts
21
test/test.ts
@ -15,7 +15,7 @@ tap.test('should start the clickhouse db', async () => {
|
||||
})
|
||||
|
||||
tap.test('should write something to the clickhouse db', async () => {
|
||||
const result = await testClickhouseDb.clickhouseClient.query(`CREATE DATABASE IF NOT EXISTS lossless`);
|
||||
const result = await testClickhouseDb.clickhouseClient.query(`CREATE DATABASE IF NOT EXISTS lossless`).toPromise();
|
||||
console.log(result);
|
||||
const result2 = await testClickhouseDb.clickhouseClient.query(`CREATE TABLE IF NOT EXISTS lossless.visits (
|
||||
timestamp UInt64,
|
||||
@ -23,8 +23,23 @@ tap.test('should write something to the clickhouse db', async () => {
|
||||
os String,
|
||||
userAgent String,
|
||||
version String
|
||||
)`);
|
||||
console.log(result);
|
||||
) ENGINE=MergeTree() ORDER BY timestamp`).toPromise();
|
||||
console.log(result2);
|
||||
const ws = testClickhouseDb.clickhouseClient.insert('INSERT INTO lossless.visits FORMAT JSONEachRow').stream();
|
||||
for(let i = 0; i <= 1000; i++) {
|
||||
await ws.writeRow(
|
||||
JSON.stringify({
|
||||
timestamp: Date.now(),
|
||||
ip: '127.0.01',
|
||||
os: 'Mac OS X',
|
||||
userAgent: 'some',
|
||||
version: 'someversion'
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
//wait stream finish
|
||||
const result3 = await ws.exec();
|
||||
})
|
||||
|
||||
tap.start();
|
||||
|
@ -17,6 +17,10 @@ export class ClickhouseDb {
|
||||
* starts the connection to the Clickhouse db
|
||||
*/
|
||||
public start() {
|
||||
this.clickhouseClient = new plugins.clickhouse.ClickHouse(this.options);
|
||||
this.clickhouseClient = new plugins.clickhouse.ClickHouse({
|
||||
...this.options,
|
||||
basicAuth: null,
|
||||
format: 'json'
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user