mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 15:22:56 +00:00
* feat: only allow timestamp data type as time index * test: update sqltest cases, todo: need some fixes * fix: sqlness tests * fix: forgot adding back cte test * chore: style
15 lines
304 B
SQL
15 lines
304 B
SQL
CREATE TABLE test_alt_table(i INTEGER, j TIMESTAMP TIME INDEX);
|
|
|
|
DESC TABLE test_alt_table;
|
|
|
|
ALTER TABLE test_alt_table ADD COLUMN k INTEGER;
|
|
|
|
DESC TABLE test_alt_table;
|
|
|
|
-- SQLNESS ARG restart=true
|
|
ALTER TABLE test_alt_table ADD COLUMN m INTEGER;
|
|
|
|
DESC TABLE test_alt_table;
|
|
|
|
DROP TABLE test_alt_table;
|