~percona-toolkit-dev/percona-toolkit/mysql-5.6-test-fixes

« back to all changes in this revision

Viewing changes to t/lib/samples/before-TableSyncNibble.sql

  • Committer: Daniel Nichter
  • Date: 2011-06-24 17:22:06 UTC
  • Revision ID: daniel@percona.com-20110624172206-c7q4s4ad6r260zz6
Add lib/, t/lib/, and sandbox/.  All modules are updated and passing on MySQL 5.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use test;
 
2
 
 
3
drop table if exists test1,test2,test3,test4;
 
4
 
 
5
create table test1(
 
6
   a int not null,
 
7
   b char(2) not null,
 
8
   c char(2) not null,
 
9
   primary key(a, b)
 
10
) ENGINE=INNODB;
 
11
 
 
12
create table test2(
 
13
   a int not null,
 
14
   b char(2) not null,
 
15
   c char(2) not null,
 
16
   primary key(a, b)
 
17
) ENGINE=INNODB;
 
18
 
 
19
insert into test1 values(1, 'en', 'a'), (2, 'ca', 'b'), (3, 'ab', 'c'),
 
20
   (4, 'bz', 'd');