summaryrefslogtreecommitdiff
path: root/mysql-test/main/backup_log.test
blob: ee34484e92bf9bf74a07a32531670fdc632d8c17 (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
39
# Testing of logging of ddl's under backup stages

--source include/have_innodb.inc
--source include/not_embedded.inc

CREATE TABLE t_exists (a INT);
CREATE TABLE t_exists_template (a INT);

connect (con1,localhost,root,,);
BACKUP STAGE START;
connection default;

--let $part_int=
--let $part_date=
--source backup_log.inc

--echo #
--echo # Testing create/drop/alter database
--echo #

create database mysqltest;
create table mysqltest.t90 (a int primary key, b int) engine=myisam;
create table mysqltest.t91 (a int primary key, b int) engine=innodb;
alter database mysqltest character set utf8;
drop database mysqltest;

--echo #
--echo # MENT-222 bug testing
--echo #
CREATE TABLE IF NOT EXISTS t_exists LIKE t_exists_template;

--source include/print_ddl_log.inc

--echo #
--echo # Cleanup
--echo #
DROP TABLE t_exists;
DROP TABLE t_exists_template;
disconnect con1;