summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp-error.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2014-12-15 17:41:15 +0400
committerAlexander Barkov <bar@mariadb.org>2014-12-15 17:41:15 +0400
commit2dbd26932d0c22cb333a73262db8135779c6f098 (patch)
tree8a7ecf919349f219ca4555a3f8387011a38286a3 /mysql-test/r/sp-error.result
parent48ed8ab2155b31d36358b2efd348f3036a294971 (diff)
downloadmariadb-git-2dbd26932d0c22cb333a73262db8135779c6f098.tar.gz
MDEV-7283 UDF: CREATE OR REPLACE, CREATE IF NOT EXISTS, DROP IF EXISTS
MDEV-7282 SP: CREATE OR REPLACE, CREATE IF NOT EXISTS
Diffstat (limited to 'mysql-test/r/sp-error.result')
-rw-r--r--mysql-test/r/sp-error.result4
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/r/sp-error.result b/mysql-test/r/sp-error.result
index 7569673c68c..4373925b8ac 100644
--- a/mysql-test/r/sp-error.result
+++ b/mysql-test/r/sp-error.result
@@ -1223,9 +1223,7 @@ END' at line 1
CREATE PROCEDURE IF NOT EXISTS bug14702()
BEGIN
END;
-ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'IF NOT EXISTS bug14702()
-BEGIN
-END' at line 1
+DROP PROCEDURE IF EXISTS bug14702;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (i INT);
CREATE PROCEDURE bug20953() CREATE VIEW v AS SELECT 1 INTO @a;