mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add tests
This commit is contained in:
parent
98050c108f
commit
ed42b94af7
@ -0,0 +1,15 @@
|
||||
*** Should show 6: ***
|
||||
test1
|
||||
test2
|
||||
test3
|
||||
test4
|
||||
test5
|
||||
test6
|
||||
*** Should show 2: ***
|
||||
test1
|
||||
test2
|
||||
*** Should show 4: ***
|
||||
test1
|
||||
test2
|
||||
test3
|
||||
test4
|
20
dbms/tests/queries/0_stateless/01011_show_tables_limit.sql
Normal file
20
dbms/tests/queries/0_stateless/01011_show_tables_limit.sql
Normal file
@ -0,0 +1,20 @@
|
||||
DROP DATABASE IF EXISTS test_show_limit;
|
||||
|
||||
CREATE DATABASE test_show_limit;
|
||||
|
||||
CREATE TABLE test_show_limit.test1 (test UInt8) ENGINE = TinyLog;
|
||||
CREATE TABLE test_show_limit.test2 (test UInt8) ENGINE = TinyLog;
|
||||
CREATE TABLE test_show_limit.test3 (test UInt8) ENGINE = TinyLog;
|
||||
CREATE TABLE test_show_limit.test4 (test UInt8) ENGINE = TinyLog;
|
||||
CREATE TABLE test_show_limit.test5 (test UInt8) ENGINE = TinyLog;
|
||||
CREATE TABLE test_show_limit.test6 (test UInt8) ENGINE = TinyLog;
|
||||
|
||||
SELECT '*** Should show 6: ***';
|
||||
SHOW TABLES FROM test_show_limit;
|
||||
SELECT '*** Should show 2: ***';
|
||||
SHOW TABLES FROM test_show_limit LIMIT 2;
|
||||
SELECT '*** Should show 4: ***';
|
||||
SHOW TABLES FROM test_show_limit LIMIT 2 * 2;
|
||||
|
||||
DROP DATABASE test_show_limit;
|
||||
|
Loading…
Reference in New Issue
Block a user