Change basic_no_fks.sql back to MyISAM but with explicit aut-inc values.

This commit is contained in:
Daniel Nichter
2012-11-27 11:37:18 -07:00
parent ea1c6f6ca9
commit 5343d43528

View File

@@ -6,25 +6,25 @@ CREATE TABLE t (
c char(32),
d date,
unique index (c(32))
) ENGINE=InnoDB;
) ENGINE=MyISAM;
INSERT INTO pt_osc.t VALUES
(null, 'a', now()),
(null, 'b', now()),
(null, 'c', now()),
(null, 'd', now()),
(null, 'e', now()),
(null, 'f', now()),
(null, 'g', now()),
(null, 'h', now()),
(null, 'i', now()),
(null, 'j', now()), -- 10
(null, 'k', now()),
(null, 'l', now()),
(null, 'm', now()),
(null, 'n', now()),
(null, 'o', now()),
(null, 'p', now()),
(null, 'q', now()),
(null, 'r', now()),
(null, 's', now()),
(null, 't', now()); -- 20
(1, 'a', now()),
(2, 'b', now()),
(3, 'c', now()),
(4, 'd', now()),
(5, 'e', now()),
(6, 'f', now()),
(7, 'g', now()),
(8, 'h', now()),
(9, 'i', now()),
(10, 'j', now()), -- 10
(11, 'k', now()),
(12, 'l', now()),
(13, 'm', now()),
(14, 'n', now()),
(15, 'o', now()),
(16, 'p', now()),
(17, 'q', now()),
(18, 'r', now()),
(19, 's', now()),
(20, 't', now()); -- 20