Update alter_active_table.t and fix NibbleIterator to handle a growing table.

This commit is contained in:
Daniel Nichter
2012-03-29 15:23:38 -06:00
parent 2dfb3318c2
commit fcc3a44e23
10 changed files with 650 additions and 583 deletions

View File

@@ -3,9 +3,9 @@ CREATE DATABASE pt_osc;
USE pt_osc;
CREATE TABLE t (
id int auto_increment primary key,
c char(16),
c char(32),
d date,
unique index (c(16))
unique index (c(32))
) ENGINE=MyISAM;
INSERT INTO pt_osc.t VALUES
(null, 'a', now()),