summaryrefslogtreecommitdiff
path: root/mysql-test/main/drop_bad_db_type.test
blob: 0fb5fe5edf4a6c53230ddb6ee55c7e22eb0e14a8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--source include/have_partition.inc
--source include/have_debug.inc

if (!$HA_ARCHIVE_SO) {
  skip Needs Archive plugin;
}

let $mysqld_datadir= `select @@datadir`;

SET @saved_dbug = @@debug_dbug;
SET debug_dbug='+d,unstable_db_type';

install soname 'ha_archive';
create table t1 (a int) engine=archive;
insert t1 values (1),(2),(3);

create table t2 (a int) engine=archive partition by hash(a) partitions 3;

flush tables;
uninstall soname 'ha_archive';

select table_schema, table_name from information_schema.tables where table_name like 't_' order by 1,2;
--replace_result $mysqld_datadir ./
select table_schema, table_name, engine, version from information_schema.tables where table_name like 't_' order by 1,2;
--replace_result $mysqld_datadir ./
select table_schema, table_name, engine, row_format from information_schema.tables where table_name like 't_' order by 1,2;

install soname 'ha_archive';
show create table t1;
show create table t2;

--list_files $mysqld_datadir/test
drop table t1;
drop table t2;
--list_files $mysqld_datadir/test
uninstall soname 'ha_archive';

SET debug_dbug=@saved_dbug;