mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-26 16:10:02 +00:00
* fix: use mark-deletion for system catalog Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix the default value Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * clean tables Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
17 lines
234 B
SQL
17 lines
234 B
SQL
create table t1 (a timestamp time index);
|
|
|
|
create table t2 (b timestamp time index);
|
|
|
|
drop table t1;
|
|
|
|
drop table t2;
|
|
|
|
-- SQLNESS ARG restart=true
|
|
show tables;
|
|
|
|
create table t3 (c timestamp time index);
|
|
|
|
desc table t3;
|
|
|
|
drop table t3;
|