Don't auto-vivify clustered_key hashref in PTDEBUG.

This commit is contained in:
Daniel Nichter
2012-08-15 16:24:19 -06:00
parent 69dcd1ff30
commit 3369a6c37d
5 changed files with 55 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
DROP DATABASE IF EXISTS bug_1036804;
CREATE DATABASE bug_1036804;
USE bug_1036804;
CREATE TABLE `t` (
`col1` int(11) DEFAULT NULL,
`col2` int(11) DEFAULT NULL,
KEY `col1` (`col1`),
KEY `col2` (`col2`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;