diff options
author | Marc Alff <marc.alff@sun.com> | 2010-02-23 11:43:26 -0700 |
---|---|---|
committer | Marc Alff <marc.alff@sun.com> | 2010-02-23 11:43:26 -0700 |
commit | 22e9e95a7c0922da63cb0d5a600f204f427caf1f (patch) | |
tree | 5ee3669bcedd4780871ead9ac02ce6be6f3a7d0c /mysql-test/r/view.result | |
parent | b6e0f92f052a37568b984330b8cca8331c979a8d (diff) | |
download | mariadb-git-22e9e95a7c0922da63cb0d5a600f204f427caf1f.tar.gz |
Bug#31767 DROP FUNCTION name resolution
Backport to 5.5.99
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index e678718d3d5..0e79446ba81 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -2086,7 +2086,7 @@ CREATE TABLE t1 ( bug_table_seq INTEGER NOT NULL); CREATE OR REPLACE VIEW v1 AS SELECT * from t1; DROP PROCEDURE IF EXISTS p1; Warnings: -Note 1305 PROCEDURE p1 does not exist +Note 1305 PROCEDURE test.p1 does not exist CREATE PROCEDURE p1 ( ) BEGIN DO (SELECT @next := IFNULL(max(bug_table_seq),0) + 1 FROM v1); |