Merge branch '5.5' into 10.0

This commit is contained in:
Sergei Golubchik 2016-04-26 23:05:26 +02:00
commit 872649c7ba
109 changed files with 1309 additions and 319 deletions

View file

@ -484,6 +484,14 @@ SELECT -a FROM t1;
--error ER_DATA_OUT_OF_RANGE
SELECT -b FROM t1;
# try with two rows now
INSERT INTO t1 VALUES(0,0);
--error ER_DATA_OUT_OF_RANGE
SELECT -a FROM t1;
--error ER_DATA_OUT_OF_RANGE
SELECT -b FROM t1;
DROP TABLE t1;
# Decimal overflows