~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/extra/binlog_tests/database.test

Merged in changes. 
Edited a the comment test case so deal with our version bump.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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;