mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-14 09:12:57 +00:00
* test: Sqlness tests for distribute mode * ci * fix: resolve PR comments * fix: resolve PR comments
10 lines
181 B
SQL
10 lines
181 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 DEFAULT 3;
|
|
|
|
SELECT * FROM test;
|
|
|
|
DROP TABLE test;
|