mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-14 01:02:55 +00:00
* test: Sqlness tests for distribute mode * ci * fix: resolve PR comments * fix: resolve PR comments
13 lines
286 B
SQL
13 lines
286 B
SQL
CREATE TABLE t(i INTEGER, j BIGINT TIME INDEX);
|
|
|
|
DESC TABLE t;
|
|
|
|
INSERT INTO TABLE t VALUES (1, 1), (3, 3), (NULL, 4);
|
|
|
|
SELECT * from t;
|
|
|
|
-- TODO(LFC): Port test cases from standalone env when distribute rename table is implemented (#723).
|
|
ALTER TABLE t RENAME new_table;
|
|
|
|
DROP TABLE t;
|