mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-21 07:20:41 +00:00
* feat: distribute truncate table * chore: add metrics for truncate table * test: add sqlness test * chore: cr * test: add multi truncate * chore: add trace id to the header
34 lines
998 B
SQL
34 lines
998 B
SQL
TRUNCATE TABLE not_exits_table;
|
|
|
|
CREATE TABLE monitor (host STRING, ts TIMESTAMP, cpu DOUBLE DEFAULT 0, memory DOUBLE, TIME INDEX (ts), PRIMARY KEY(host));
|
|
|
|
INSERT INTO monitor(ts, host, cpu, memory) VALUES
|
|
(1695217652000, 'host1', 66.6, 1024),
|
|
(1695217652000, 'host2', 66.6, 1024),
|
|
(1695217652000, 'host3', 66.6, 1024),
|
|
(1695217654000, 'host1', 77.7, 2048),
|
|
(1695217654000, 'host2', 77.7, 2048),
|
|
(1695217654000, 'host3', 77.7, 2048),
|
|
(1695217656000, 'host1', 88.8, 4096),
|
|
(1695217656000, 'host2', 88.8, 4096),
|
|
(1695217656000, 'host3', 88.8, 4096);
|
|
|
|
SELECT ts, host, cpu, memory FROM monitor ORDER BY ts;
|
|
|
|
TRUNCATE monitor;
|
|
|
|
SELECT ts, host, cpu, memory FROM monitor ORDER BY ts;
|
|
|
|
INSERT INTO monitor(ts, host, cpu, memory) VALUES
|
|
(1695217660000, 'host1', 88.8, 4096),
|
|
(1695217662000, 'host2', 88.8, 4096),
|
|
(1695217664000, 'host3', 88.8, 4096);
|
|
|
|
SELECT ts, host, cpu, memory FROM monitor ORDER BY ts;
|
|
|
|
TRUNCATE monitor;
|
|
|
|
SELECT ts, host, cpu, memory FROM monitor ORDER BY ts;
|
|
|
|
DROP TABLE monitor;
|