File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
storage/rocksdb/mysql-test/rocksdb Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,11 @@ Table Op Msg_type Msg_text
51
51
test.t1 repair status OK
52
52
Table Op Msg_type Msg_text
53
53
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
54
59
t1
55
60
temp0
56
61
var_pop
Original file line number Diff line number Diff line change @@ -77,8 +77,11 @@ CREATE TABLE TEMP0 (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 3;
77
77
CREATE TABLE VAR_SAMP (a int) ENGINE = ROCKSDB PARTITION BY HASH (a) PARTITIONS 10;
78
78
79
79
--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;
82
85
83
86
SELECT * FROM t1 ORDER BY i LIMIT 10;
84
87
SELECT COUNT(*) FROM t1;
You can’t perform that action at this time.
0 commit comments