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