summaryrefslogtreecommitdiff
path: root/mysql-test/r/errors.result
diff options
context:
space:
mode:
authorMarc Alff <marc.alff@sun.com>2010-02-23 11:43:26 -0700
committerMarc Alff <marc.alff@sun.com>2010-02-23 11:43:26 -0700
commite96932f49ec2840cb1665f71fdb316464e5be3bc (patch)
tree5ee3669bcedd4780871ead9ac02ce6be6f3a7d0c /mysql-test/r/errors.result
parent1dd2f90faf79eb1b194c9af0cde987c8a7b3058f (diff)
downloadmariadb-git-e96932f49ec2840cb1665f71fdb316464e5be3bc.tar.gz
Bug#31767 DROP FUNCTION name resolution
Backport to 5.5.99
Diffstat (limited to 'mysql-test/r/errors.result')
-rw-r--r--mysql-test/r/errors.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/errors.result b/mysql-test/r/errors.result
index 79474b960f5..a3a8fe0b147 100644
--- a/mysql-test/r/errors.result
+++ b/mysql-test/r/errors.result
@@ -61,10 +61,10 @@ create table t1 (a int unique);
create table t2 (a int);
drop function if exists f1;
Warnings:
-Note 1305 FUNCTION f1 does not exist
+Note 1305 FUNCTION test.f1 does not exist
drop function if exists f2;
Warnings:
-Note 1305 FUNCTION f2 does not exist
+Note 1305 FUNCTION test.f2 does not exist
create function f1() returns int
begin
insert into t1 (a) values (1);