Skip to content

Commit 669e910

Browse files
committed
More post-merge fixes
1 parent 819adb4 commit 669e910

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ CREATE TABLE t1 (pk INT, PRIMARY KEY (pk)) ENGINE=ROCKSDB;
22
SET rocksdb_bulk_load_allow_unsorted=1;
33
SET rocksdb_bulk_load=1;
44
INSERT INTO t1 VALUES (1);
5+
connect con1,localhost,root,,;
56
DROP TABLE t1;
7+
connection default;
8+
disconnect con1;
69
SET rocksdb_bulk_load=0;
710
SELECT * FROM t1;
811
ERROR 42S02: Table 'test.t1' doesn't exist

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ information_schema.statistics where table_name="t0" and column_name="a";
3333
FLOOR(@N/cardinality)
3434
2
3535
drop table t0;
36+
DROP TABLE IF EXISTS t1,t10,t11;
3637
create table t1(
3738
id bigint not null primary key,
3839
i1 bigint, #unique

0 commit comments

Comments
 (0)