diff options
author | anozdrin@mysql.com <> | 2006-03-09 20:41:21 +0300 |
---|---|---|
committer | anozdrin@mysql.com <> | 2006-03-09 20:41:21 +0300 |
commit | c1ef46fcc745e018215d26e102e3f8b1556f43ed (patch) | |
tree | 2b6538fc49c0e44c25ff8300cdb977f7d4ff8119 /mysql-test/r/sql_mode.result | |
parent | c824a4095d04f2eea1e4a179a9a4b2c99d3ab73d (diff) | |
parent | be527f3070c67455bc7d7a5e9361ee2b1f09461a (diff) | |
download | mariadb-git-c1ef46fcc745e018215d26e102e3f8b1556f43ed.tar.gz |
Merge mysql.com:/home/alik/Documents/AllProgs/MySQL/devel/5.0-tree
into mysql.com:/home/alik/Documents/AllProgs/MySQL/devel/5.1-merged
Diffstat (limited to 'mysql-test/r/sql_mode.result')
-rw-r--r-- | mysql-test/r/sql_mode.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/sql_mode.result b/mysql-test/r/sql_mode.result index 2f17962fc15..31b67529f8d 100644 --- a/mysql-test/r/sql_mode.result +++ b/mysql-test/r/sql_mode.result @@ -427,23 +427,23 @@ SET @@SQL_MODE=''; create function `foo` () returns int return 5; show create function `foo`; Function sql_mode Create Function -foo CREATE FUNCTION `foo`() RETURNS int(11) +foo CREATE DEFINER=`root`@`localhost` FUNCTION `foo`() RETURNS int(11) return 5 SET @@SQL_MODE='ANSI_QUOTES'; show create function `foo`; Function sql_mode Create Function -foo CREATE FUNCTION `foo`() RETURNS int(11) +foo CREATE DEFINER=`root`@`localhost` FUNCTION `foo`() RETURNS int(11) return 5 drop function `foo`; create function `foo` () returns int return 5; show create function `foo`; Function sql_mode Create Function -foo ANSI_QUOTES CREATE FUNCTION "foo"() RETURNS int(11) +foo ANSI_QUOTES CREATE DEFINER="root"@"localhost" FUNCTION "foo"() RETURNS int(11) return 5 SET @@SQL_MODE=''; show create function `foo`; Function sql_mode Create Function -foo ANSI_QUOTES CREATE FUNCTION "foo"() RETURNS int(11) +foo ANSI_QUOTES CREATE DEFINER="root"@"localhost" FUNCTION "foo"() RETURNS int(11) return 5 drop function `foo`; SET @@SQL_MODE=''; |