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

« back to all changes in this revision

Viewing changes to t/lib/samples/empty_tables.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
-- These are all empty tables with various columns, engines, etc.
 
2
-- They're used to test stuff like issue 672 which requires a least
 
3
-- one empty table.
 
4
DROP DATABASE IF EXISTS et;
 
5
CREATE DATABASE et;
 
6
USE et;
 
7
 
 
8
CREATE TABLE et1 (
 
9
  i int,
 
10
  unique index (i)
 
11
);
 
12