diff options
Diffstat (limited to 'mysql-test/t/func_math.test')
-rw-r--r-- | mysql-test/t/func_math.test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/t/func_math.test b/mysql-test/t/func_math.test index b48f4599074..058c6f3b7ca 100644 --- a/mysql-test/t/func_math.test +++ b/mysql-test/t/func_math.test @@ -586,5 +586,9 @@ SELECT STDDEV_POP(ROUND(0,@A:=2009)) FROM (SELECT 1 UNION SELECT 2) fake_table; --echo # ---echo # End of 10.0 tests +--echo # Start of 10.2 tests --echo # + +--echo # Test zero +select 0=0, 0=-0, 0.0= -0.0, 0.0 = -(0.0), 0.0E1=-0.0E1, 0.0E1=-(0.0E1); + |