blob: c5acfa76b117c8ce4fa3eb613db9c22fa7d23102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--source include/have_partition.inc
--source include/have_rocksdb.inc
--source include/not_embedded.inc
#
# Test that dynmaic loaded storage engines also works with partition and logging
# This is will access code in dd_frm_type() that is not acccessed by other tests
#
connect (con1,localhost,root,,);
BACKUP STAGE START;
connection default;
--echo # Test partition engine read from .frm
CREATE TABLE t220 (a INT) ENGINE ROCKSDB PARTITION BY KEY(a) PARTITIONS 2;
DROP TABLE t220;
--source include/print_ddl_log.inc
--echo #
--echo # Cleanup
--echo #
disconnect con1;
|