~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filtered_replicator/tests/r/var_filteredtables.result

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
We should only see events for t1 table in the log
13
13
 
14
14
SET AUTOCOMMIT=0;
15
 
CREATE TABLE `test`.`t1` (   `a` INT NOT NULL,   PRIMARY KEY (`a`) ) ENGINE=InnoDB COLLATE = utf8_general_ci;
 
15
CREATE TABLE `test`.`t1` (   `a` INT NOT NULL,   PRIMARY KEY (`a`) USING BTREE ) ENGINE=InnoDB COLLATE = utf8_general_ci;
16
16
COMMIT;
17
17
START TRANSACTION;
18
18
INSERT INTO `test`.`t1` (`a`) VALUES (1);