ignore test

This commit is contained in:
xiedeyantu 2023-07-20 19:58:51 +08:00
parent 3225c30f73
commit fc3be766f7
2 changed files with 0 additions and 8 deletions

View File

@ -1,4 +0,0 @@
CREATE TABLE system.metrics\n(\n `metric` String,\n `value` Int64,\n `description` String,\n `name` String\n)\nENGINE = SystemMetrics\nCOMMENT \'SYSTEM TABLE is built on the fly.\'
1
CREATE TABLE system.events\n(\n `event` String,\n `value` UInt64,\n `description` String,\n `name` String\n)\nENGINE = SystemEvents\nCOMMENT \'SYSTEM TABLE is built on the fly.\'
1

View File

@ -1,4 +0,0 @@
show create table system.metrics;
select equals((select count() from system.metrics where name=metric) as r1, (select count() from system.metrics) as r2);
show create table system.events;
select equals((select count() from system.events where name=event) as r1, (select count() from system.events) as r2);