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

« back to all changes in this revision

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

  • Committer: Daniel Nichter
  • Date: 2011-06-24 22:02:05 UTC
  • Revision ID: daniel@percona.com-20110624220205-e779cao9hcwyly1w
Add forked Maatkit tools in bin/ and their tests in t/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop database if exists test2;
 
2
create database test2;
 
3
use test2;
 
4
create table resume2 (
 
5
   i int not null unique key
 
6
);
 
7
insert into test2.resume2 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);