Files
greptimedb/tests/cases/standalone/common/drop/drop_table.result
tison 7d506b3c5f feat: drop if exists (#2859)
* feat: drop if exists

Signed-off-by: tison <wander4096@gmail.com>

* sqlness cases

Signed-off-by: tison <wander4096@gmail.com>

---------

Signed-off-by: tison <wander4096@gmail.com>
2023-12-05 02:18:33 +00:00

23 lines
349 B
Plaintext

DROP TABLE IF EXISTS foo;
Affected Rows: 0
create table foo (
host string,
ts timestamp DEFAULT '2023-04-29 00:00:00+00:00',
cpu double default 0,
TIME INDEX (ts),
PRIMARY KEY(host)
) engine=mito with(regions=1);
Affected Rows: 0
DROP TABLE IF EXISTS foo;
Affected Rows: 0
DROP TABLE IF EXISTS foo;
Affected Rows: 0