Files
greptimedb/tests/cases/standalone/create/recover_created.sql
Ruihang Xia 746fe8b4fe fix: use mark-deletion for system catalog (#1874)
* 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>
2023-07-04 16:00:39 +08:00

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;