~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/701468.result

  • Committer: Padraig O'Sullivan
  • Date: 2009-07-22 23:26:26 UTC
  • mto: (1039.5.43 replication)
  • mto: This revision was merged to the branch mainline in revision 1130.
  • Revision ID: osullivan.padraig@gmail.com-20090722232626-mu4khq7ho6dqcf7q
Created a simple filtered replicator that can filter by schema name or table
name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table t1 (a int not null);
2
 
insert into t1 values (1), (NULL), (2);
3
 
ERROR 23000: Column 'a' cannot be null
4
 
begin;
5
 
insert into t1 values (42);
6
 
insert into t1 values (1), (NULL), (2);
7
 
ERROR 23000: Column 'a' cannot be null
8
 
select * from t1;
9
 
a
10
 
42
11
 
rollback;
12
 
select * from t1;
13
 
a
14
 
drop table t1;