mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 15:22:56 +00:00
* test: Sqlness tests for distribute mode * ci * fix: resolve PR comments * fix: resolve PR comments
10 lines
171 B
SQL
10 lines
171 B
SQL
CREATE TABLE test(i INTEGER, j BIGINT TIME INDEX);
|
|
|
|
INSERT INTO test VALUES (1, 1), (2, 2);
|
|
|
|
ALTER TABLE test ADD COLUMN k INTEGER;
|
|
|
|
SELECT * FROM test;
|
|
|
|
DROP TABLE test;
|