mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-24 00:40:40 +00:00
* feat: local catalog drop table * Update src/catalog/src/local/manager.rs Co-authored-by: Lei, HUANG <6406592+v0y4g3r@users.noreply.github.com> * Update src/catalog/src/local/manager.rs Co-authored-by: Lei, HUANG <6406592+v0y4g3r@users.noreply.github.com> * fix: resolve PR comments --------- Co-authored-by: Lei, HUANG <6406592+v0y4g3r@users.noreply.github.com>
10 lines
211 B
SQL
10 lines
211 B
SQL
CREATE TABLE test_add_col(i INTEGER, j BIGINT TIME INDEX);
|
|
|
|
INSERT INTO test_add_col VALUES (1, 1), (2, 2);
|
|
|
|
ALTER TABLE test_add_col ADD COLUMN k INTEGER;
|
|
|
|
SELECT * FROM test_add_col;
|
|
|
|
DROP TABLE test_add_col;
|