~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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;