Commit 57672a85 authored by Sergei Petrunia's avatar Sergei Petrunia

MariaRocks: make partition.test work on any platform

parent 69387c68
......@@ -51,6 +51,11 @@ Table Op Msg_type Msg_text
test.t1 repair status OK
Table Op Msg_type Msg_text
test.t1 check status OK
select lower(table_name) as tname
from information_schema.tables
where table_schema=database()
order by tname;
tname
t1
temp0
var_pop
......
......@@ -77,8 +77,11 @@ CREATE TABLE TEMP0 (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 3;
CREATE TABLE VAR_SAMP (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 10;
--enable_query_log
--lowercase_result
SHOW TABLES;
select lower(table_name) as tname
from information_schema.tables
where table_schema=database()
order by tname;
SELECT * FROM t1 ORDER BY i LIMIT 10;
SELECT COUNT(*) FROM t1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment