summaryrefslogtreecommitdiff
path: root/mysql-test/main/drop_bad_db_type.test
blob: 6a3ac6ae00f7bc0539252c87bf224bede2b7cfec (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

--source include/have_debug.inc

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

let $mysqld_datadir= `select @@datadir`;

SET @save_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);
flush tables;
uninstall soname 'ha_archive';

--vertical_results
select table_schema, table_name from information_schema.tables where table_name like 't1';
select table_schema, table_name, engine, version from information_schema.tables where table_name like 't1';
select table_schema, table_name, engine, row_format from information_schema.tables where table_name like 't1';
--horizontal_results

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

set debug_dbug=@save_dbug;