~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

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