~percona-toolkit-dev/percona-toolkit/make-optionparser-use-readkeymini

« back to all changes in this revision

Viewing changes to t/pt-table-checksum/samples/a-z.sql

Finish merging fix-ptc-diffs-bug-1030031

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop database if exists test;
 
2
create database test;
 
3
use test;
 
4
 
 
5
create table t (
 
6
  id  int auto_increment primary key,
 
7
  c   varchar(16) not null
 
8
) engine=innodb;
 
9
 
 
10
insert into t values (null, 'a'),(null, 'b'),(null, 'c'),(null, 'd'),(null, 'e'),(null, 'f'),(null, 'g'),(null, 'h'),(null, 'i'),(null, 'j'),(null, 'k'),(null, 'l'),(null, 'm'),(null, 'n'),(null, 'o'),(null, 'p'),(null, 'q'),(null, 'r'),(null, 's'),(null, 't'),(null, 'u'),(null, 'v'),(null, 'w'),(null, 'x'),(null, 'y'),(null, 'z');