~percona-toolkit-dev/percona-toolkit/fix-log-parser-writer-bug-963225

« back to all changes in this revision

Viewing changes to t/lib/samples/issue_8.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
DROP TABLE IF EXISTS `issue_8`;
 
3
CREATE TABLE `issue_8` (
 
4
   id    INT AUTO_INCREMENT PRIMARY KEY,
 
5
   foo   INT NOT NULL DEFAULT 0,
 
6
   bar   VARCHAR(64),
 
7
   UNIQUE INDEX uidx_foo (foo),
 
8
   INDEX idx_bar (bar(32))
 
9
);