Failing test case for bug 1229861.

This commit is contained in:
Daniel Nichter
2013-10-10 15:44:48 -07:00
parent 12633dde17
commit 5e46d013a9
2 changed files with 42 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
DROP DATABASE IF EXISTS sync_float_1229861;
CREATE DATABASE sync_float_1229861;
USE sync_float_1229861;
CREATE TABLE `t` (
`c1` int(10) DEFAULT NULL,
`c2` int(10) DEFAULT NULL,
`c3` int(10) DEFAULT NULL,
`snrmin` float(3,1) DEFAULT NULL,
`snrmax` float(3,1) DEFAULT NULL,
`snravg` float(3,1) DEFAULT NULL,
KEY `c2` (`c2`,`c3`)
) ENGINE=InnoDB;