fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-14 13:52:42 +01:00
parent 73529b353c
commit f5ba97aa3d
3 changed files with 10 additions and 11 deletions

14
package-lock.json generated
View File

@ -10,7 +10,7 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@depyronick/clickhouse-client": "^1.0.12", "@depyronick/clickhouse-client": "^1.0.12",
"@pushrocks/smartobject": "^1.0.9" "@pushrocks/smartobject": "^1.0.10"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.25", "@gitzone/tsbuild": "^2.1.25",
@ -2635,9 +2635,9 @@
} }
}, },
"node_modules/@pushrocks/smartobject": { "node_modules/@pushrocks/smartobject": {
"version": "1.0.9", "version": "1.0.10",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartobject/-/smartobject-1.0.9.tgz", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartobject/-/smartobject-1.0.10.tgz",
"integrity": "sha512-74IlcVWhhEOsG7X65H4DmYP1o8HejZMWj5uATCk99A+XjZMi8UJu8H7EsgT++JJKkwLz2BKc9323BfNk1B79WA==", "integrity": "sha512-Tfhvy/XoYQ0e4Sl/ztvqJh+lxR9+zixHlnMPstYW05ZbRTZzC6lf1EZLcsmjiALkz6IDFNEwrMrwODlJIpjj+A==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"fast-deep-equal": "^3.1.3", "fast-deep-equal": "^3.1.3",
@ -17723,9 +17723,9 @@
} }
}, },
"@pushrocks/smartobject": { "@pushrocks/smartobject": {
"version": "1.0.9", "version": "1.0.10",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartobject/-/smartobject-1.0.9.tgz", "resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartobject/-/smartobject-1.0.10.tgz",
"integrity": "sha512-74IlcVWhhEOsG7X65H4DmYP1o8HejZMWj5uATCk99A+XjZMi8UJu8H7EsgT++JJKkwLz2BKc9323BfNk1B79WA==", "integrity": "sha512-Tfhvy/XoYQ0e4Sl/ztvqJh+lxR9+zixHlnMPstYW05ZbRTZzC6lf1EZLcsmjiALkz6IDFNEwrMrwODlJIpjj+A==",
"requires": { "requires": {
"fast-deep-equal": "^3.1.3", "fast-deep-equal": "^3.1.3",
"minimatch": "^5.0.1" "minimatch": "^5.0.1"

View File

@ -24,7 +24,7 @@
}, },
"dependencies": { "dependencies": {
"@depyronick/clickhouse-client": "^1.0.12", "@depyronick/clickhouse-client": "^1.0.12",
"@pushrocks/smartobject": "^1.0.9" "@pushrocks/smartobject": "^1.0.10"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"

View File

@ -36,13 +36,12 @@ export class TimeDataTable {
CREATE TABLE IF NOT EXISTS ${newTable.tableName} ( CREATE TABLE IF NOT EXISTS ${newTable.tableName} (
timestamp DateTime64(3, 'Europe/Berlin'), timestamp DateTime64(3, 'Europe/Berlin'),
message String message String
) ENGINE=MergeTree() ORDER BY timestamp ) ENGINE=MergeTree() ORDER BY timestamp`);
`);
// lets adjust the TTL // lets adjust the TTL
await smartClickHouseDbRefArg.clickhouseClient await smartClickHouseDbRefArg.clickhouseClient
.queryPromise(` .queryPromise(`
ALTER TABLE ${newTable.tableName} MODIFY TTL toDateTime(timestamp) + INTERVAL 1 MONTH; ALTER TABLE ${newTable.tableName} MODIFY TTL toDateTime(timestamp) + INTERVAL 2 DAY
`); `);
await newTable.updateColumns(); await newTable.updateColumns();