Skip to content

Commit 57672a8

Browse files
committed
MariaRocks: make partition.test work on any platform
1 parent 69387c6 commit 57672a8

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

storage/rocksdb/mysql-test/rocksdb/r/partition.result

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ Table Op Msg_type Msg_text
5151
test.t1 repair status OK
5252
Table Op Msg_type Msg_text
5353
test.t1 check status OK
54+
select lower(table_name) as tname
55+
from information_schema.tables
56+
where table_schema=database()
57+
order by tname;
58+
tname
5459
t1
5560
temp0
5661
var_pop

storage/rocksdb/mysql-test/rocksdb/t/partition.test

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,11 @@ CREATE TABLE TEMP0 (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 3;
7777
CREATE TABLE VAR_SAMP (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 10;
7878

7979
--enable_query_log
80-
--lowercase_result
81-
SHOW TABLES;
80+
81+
select lower(table_name) as tname
82+
from information_schema.tables
83+
where table_schema=database()
84+
order by tname;
8285

8386
SELECT * FROM t1 ORDER BY i LIMIT 10;
8487
SELECT COUNT(*) FROM t1;

0 commit comments

Comments
 (0)