Fix a pt-osc test by analyzing table to get accurate explain estimate.

This commit is contained in:
Daniel Nichter
2012-12-04 00:51:24 +00:00
parent 7d896e5c49
commit e441b571c3

View File

@@ -6,5 +6,5 @@ CREATE TABLE `bits` (
`val` ENUM('M','E','H') NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `bits` VALUES (1, 'M'), (2, 'E'), (3, 'H');
ANALYZE TABLE bits;