~ubuntu-branches/ubuntu/quantal/mysql-5.5/quantal-security

« back to all changes in this revision

Viewing changes to mysql-test/r/func_math.result

  • Committer: Package Import Robot
  • Author(s): Seth Arnold
  • Date: 2013-04-18 18:15:39 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130418181539-7uo1w041b4h2ulbs
Tags: 5.5.31-0ubuntu0.12.10.1
* SECURITY UPDATE: Update to 5.5.31 to fix security issues (LP: #1170516)
  - http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html
* debian/patches/71_disable_rpl_tests.patch: refreshed.
* debian/patches/fix-mysqldump-test.patch: removed, fixed differently
  upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
638
638
DROP TABLE t1;
639
639
SET @a:=999999999999999999999999999999999999999999999999999999999999999999999999999999999;
640
640
SELECT @a + @a;
641
 
ERROR 22003: DECIMAL value is out of range in '((@a) + (@a))'
 
641
ERROR 22003: DECIMAL value is out of range in '((@`a`) + (@`a`))'
642
642
SELECT @a * @a;
643
 
ERROR 22003: DECIMAL value is out of range in '((@a) * (@a))'
 
643
ERROR 22003: DECIMAL value is out of range in '((@`a`) * (@`a`))'
644
644
SELECT -@a - @a;
645
 
ERROR 22003: DECIMAL value is out of range in '(-((@a)) - (@a))'
 
645
ERROR 22003: DECIMAL value is out of range in '(-((@`a`)) - (@`a`))'
646
646
SELECT @a / 0.5;
647
 
ERROR 22003: DECIMAL value is out of range in '((@a) / 0.5)'
 
647
ERROR 22003: DECIMAL value is out of range in '((@`a`) / 0.5)'
648
648
SELECT COT(1/0);
649
649
COT(1/0)
650
650
NULL