diff options
author | sergefp@mysql.com <> | 2005-03-15 10:27:44 +0300 |
---|---|---|
committer | sergefp@mysql.com <> | 2005-03-15 10:27:44 +0300 |
commit | ce564b2d7f306512506a49038d04bcc98dd3d092 (patch) | |
tree | 60989af8d640c6fda090f9833fbd8db9516356dc | |
parent | 62465a98e27af7325bde9cb9fba7655a575fdc50 (diff) | |
download | mariadb-git-ce564b2d7f306512506a49038d04bcc98dd3d092.tar.gz |
Updated tests results for BUG#8510
-rw-r--r-- | mysql-test/r/sp.result | 2 | ||||
-rw-r--r-- | mysql-test/r/strict.result | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index afc014bc4ae..2984bd3975f 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -2030,7 +2030,7 @@ bug2564_3 CREATE FUNCTION `test`.`bug2564_3`(x int, y int) RETURNS int(11) return x || y show create function bug2564_4| Function sql_mode Create Function -bug2564_4 REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ONLY_FULL_GROUP_BY,ANSI CREATE FUNCTION "test"."bug2564_4"(x int, y int) RETURNS int(11) +bug2564_4 REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI CREATE FUNCTION "test"."bug2564_4"(x int, y int) RETURNS int(11) return x || y drop procedure bug2564_1| drop procedure bug2564_2| diff --git a/mysql-test/r/strict.result b/mysql-test/r/strict.result index 18680b0f5a6..c3d2533a2e3 100644 --- a/mysql-test/r/strict.result +++ b/mysql-test/r/strict.result @@ -1,7 +1,7 @@ set @@sql_mode='ansi,traditional'; select @@sql_mode; @@sql_mode -REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ONLY_FULL_GROUP_BY,ANSI,STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER +REAL_AS_FLOAT,PIPES_AS_CONCAT,ANSI_QUOTES,IGNORE_SPACE,ANSI,STRICT_TRANS_TABLES,STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,TRADITIONAL,NO_AUTO_CREATE_USER DROP TABLE IF EXISTS t1; CREATE TABLE t1 (col1 date); INSERT INTO t1 VALUES('2004-01-01'),('0000-10-31'),('2004-02-29'); |