mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 21:51:21 +00:00
Add lib/, t/lib/, and sandbox/. All modules are updated and passing on MySQL 5.1.
This commit is contained in:
12
t/lib/samples/empty_tables.sql
Normal file
12
t/lib/samples/empty_tables.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
-- These are all empty tables with various columns, engines, etc.
|
||||
-- They're used to test stuff like issue 672 which requires a least
|
||||
-- one empty table.
|
||||
DROP DATABASE IF EXISTS et;
|
||||
CREATE DATABASE et;
|
||||
USE et;
|
||||
|
||||
CREATE TABLE et1 (
|
||||
i int,
|
||||
unique index (i)
|
||||
);
|
||||
|
Reference in New Issue
Block a user