File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
mysql-test/columnstore/bugfixes Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 6262-761
6363761
6464762
65+ DROP TABLE IF EXISTS t1;
66+ CREATE TABLE t1 (i SMALLINT) ENGINE=ColumnStore;
67+ INSERT INTO t1 VALUES (-762);
68+ INSERT INTO t1 VALUES (-761);
69+ INSERT INTO t1 VALUES (761);
70+ INSERT INTO t1 VALUES (762);
71+ SELECT * FROM t1 WHERE i > -762.2;
72+ i
73+ -762
74+ -761
75+ 761
76+ 762
6577DROP DATABASE mcol_4628;
Original file line number Diff line number Diff line change @@ -71,6 +71,16 @@ INSERT INTO t1 VALUES (761);
7171INSERT INTO t1 VALUES (762);
7272SELECT * FROM t1 WHERE i > -762.5;
7373
74+ --disable_warnings
75+ DROP TABLE IF EXISTS t1;
76+ --enable_warnings
77+ CREATE TABLE t1 (i SMALLINT) ENGINE=ColumnStore;
78+ INSERT INTO t1 VALUES (-762);
79+ INSERT INTO t1 VALUES (-761);
80+ INSERT INTO t1 VALUES (761);
81+ INSERT INTO t1 VALUES (762);
82+ SELECT * FROM t1 WHERE i > -762.2;
83+
7484--disable_warnings
7585DROP DATABASE mcol_4628;
7686--enable_warnings
You can’t perform that action at this time.
0 commit comments