ClickHouse/tests/queries/0_stateless/02710_show_table.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
415 B
MySQL
Raw Normal View History

2023-04-13 12:27:48 +00:00
-- Tags: no-parallel
2023-04-10 06:37:47 +00:00
DROP TABLE IF EXISTS t_2710_show_table;
2023-04-10 13:53:43 +00:00
CREATE TABLE t_2710_show_table(n1 UInt32, s String) engine=Log;
2023-04-10 06:37:47 +00:00
SHOW TABLE t_2710_show_table;
2023-04-10 13:53:43 +00:00
SHOW CREATE TABLE t_2710_show_table;
SHOW CREATE t_2710_show_table;
2023-04-10 06:37:47 +00:00
DROP TABLE t_2710_show_table;
DROP DATABASE IF EXISTS t_2710_db;
CREATE DATABASE t_2710_db engine=Atomic;
SHOW DATABASE t_2710_db;
2023-04-12 14:01:21 +00:00
SHOW CREATE DATABASE t_2710_db;
2023-04-10 06:37:47 +00:00
DROP DATABASE t_2710_db;