ClickHouse/dbms/tests/queries/0_stateless/00080_show_tables.sql

11 lines
267 B
MySQL
Raw Normal View History

DROP DATABASE IF EXISTS test_show_tables;
CREATE DATABASE test_show_tables;
CREATE TABLE test_show_tables.A (A UInt8) ENGINE = TinyLog;
CREATE TABLE test_show_tables.B (A UInt8) ENGINE = TinyLog;
SHOW TABLES from test_show_tables;
2014-11-22 20:56:14 +00:00
DROP DATABASE test_show_tables;