1
by brian
clean slate |
1 |
source include/have_log_bin.inc; |
2 |
source include/not_embedded.inc; |
|
3 |
||
4 |
# Checking that the drop of a database does not replicate anything in |
|
5 |
# addition to the drop of the database |
|
6 |
||
7 |
reset master; |
|
8 |
create database testing_1; |
|
9 |
use testing_1; |
|
10 |
create table t1 (a int); |
|
11 |
create function sf1 (a int) returns int return a+1; |
|
12 |
create trigger tr1 before insert on t1 for each row insert into t2 values (2*new.a); |
|
13 |
create procedure sp1 (a int) insert into t1 values(a); |
|
14 |
drop database testing_1; |
|
15 |
source include/show_binlog_events.inc; |