mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 12:52:57 +00:00
* test: adds sqlness test for TTL * chore: restart cluster * fix: typo * test: adds database TTL with metric engine tables
16 lines
291 B
SQL
16 lines
291 B
SQL
CREATE TABLE test_ttl(ts TIMESTAMP TIME INDEX, val INT) WITH (ttl = '1 second');
|
|
|
|
INSERT INTO test_ttl VALUES
|
|
(now(), 1);
|
|
|
|
SELECT val from test_ttl;
|
|
|
|
-- SQLNESS SLEEP 2s
|
|
ADMIN flush_table('test_ttl');
|
|
|
|
ADMIN compact_table('test_ttl');
|
|
|
|
SELECT val from test_ttl;
|
|
|
|
DROP TABLE test_ttl;
|