fix(core): update

This commit is contained in:
Philipp Kunz 2022-08-01 12:52:53 +02:00
parent 51c2d4f6e0
commit 4a8bbc3d13
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartclickhouse',
version: '2.0.9',
version: '2.0.10',
description: 'an odm for talking to clickhouse'
}

View File

@ -97,6 +97,9 @@ export class TimeDataTable {
* stores a json and tries to map it to the nested syntax
*/
public async addData(dataArg: any) {
if (this.healingDeferred) {
return;
}
// the storageJson
let storageJson: { [key: string]: any } = {};