Files
greptimedb/tests/cases/standalone/common/ttl/basic.result
dennis zhuang ff4c153d4b test: adds sqlness test for TTL (#5063)
* test: adds sqlness test for TTL

* chore: restart cluster

* fix: typo

* test: adds database TTL with metric engine tables
2024-12-03 11:32:40 +00:00

44 lines
746 B
Plaintext

CREATE TABLE test_ttl(ts TIMESTAMP TIME INDEX, val INT) WITH (ttl = '1 second');
Affected Rows: 0
INSERT INTO test_ttl VALUES
(now(), 1);
Affected Rows: 1
SELECT val from test_ttl;
+-----+
| val |
+-----+
| 1 |
+-----+
-- SQLNESS SLEEP 2s
ADMIN flush_table('test_ttl');
+-------------------------------+
| ADMIN flush_table('test_ttl') |
+-------------------------------+
| 0 |
+-------------------------------+
ADMIN compact_table('test_ttl');
+---------------------------------+
| ADMIN compact_table('test_ttl') |
+---------------------------------+
| 0 |
+---------------------------------+
SELECT val from test_ttl;
++
++
DROP TABLE test_ttl;
Affected Rows: 0