Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
15
plugins/inputs/sql/testdata/clickhouse/expected.sql
vendored
Normal file
15
plugins/inputs/sql/testdata/clickhouse/expected.sql
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
CREATE TABLE IF NOT EXISTS default.metric_one (
|
||||
tag_one String,
|
||||
tag_two String,
|
||||
int64_one Int64,
|
||||
int64_two Int64,
|
||||
timestamp Int64
|
||||
) ENGINE MergeTree() ORDER BY timestamp;
|
||||
|
||||
INSERT INTO default.metric_one (
|
||||
tag_one,
|
||||
tag_two,
|
||||
int64_one,
|
||||
int64_two,
|
||||
timestamp
|
||||
) VALUES ('tag1', 'tag2', 1234, 2345, 1621289085);
|
Loading…
Add table
Add a link
Reference in a new issue