1include/master-slave.inc
2Warnings:
3Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
4Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
5[connection master]
6drop database if exists mysqltest1;
7create database mysqltest1;
8create table mysqltest1.t1 (n int);
9insert into mysqltest1.t1 values (1);
10select * from mysqltest1.t1 into outfile 'mysqltest1/f1.txt';
11create table mysqltest1.t2 (n int);
12create table mysqltest1.t3 (n int);
13drop database mysqltest1;
14ERROR HY000: Error dropping database (can't rmdir './mysqltest1/', errno: 17)
15use mysqltest1;
16show tables;
17Tables_in_mysqltest1
18drop database mysqltest1;
19ERROR HY000: Error dropping database (can't rmdir './mysqltest1/', errno: 17)
20use mysqltest1;
21show tables;
22Tables_in_mysqltest1
23use test;
24create table t1 (n int);
25insert into t1 values (1234);
26use mysqltest1;
27show tables;
28Tables_in_mysqltest1
29use test;
30select * from t1;
31n
321234
33use test;
34drop table t1;
35drop database mysqltest1;
36include/rpl_end.inc
37