summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2016-05-25 06:47:09 +0400
committerAlexander Barkov <bar@mariadb.org>2016-05-25 06:47:09 +0400
commit2fc6e79084d63fdc8175900377790d6a92470436 (patch)
tree3b15045b8448d9d8e65789c997b7a6e0efcd5b3e
parent804b00e878dd14b0e50a646ac134c4a52259d41a (diff)
downloadmariadb-git-2fc6e79084d63fdc8175900377790d6a92470436.tar.gz
Recording test results forgotten in 9a25c01f7848324dd63c64ea4e1c86ef1cebfbc8
MDEV-10102 Disallow CREATE VIEW .. PROCEDURE ANALYSE() syntactically
-rw-r--r--mysql-test/suite/funcs_1/r/myisam_views-big.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/funcs_1/r/myisam_views-big.result b/mysql-test/suite/funcs_1/r/myisam_views-big.result
index 0e0bede7257..49f3c8fb133 100644
--- a/mysql-test/suite/funcs_1/r/myisam_views-big.result
+++ b/mysql-test/suite/funcs_1/r/myisam_views-big.result
@@ -4000,7 +4000,7 @@ DROP VIEW IF EXISTS v2 ;
CREATE TABLE t1 (f1 BIGINT) ;
SET @x=0;
CREATE or REPLACE VIEW v1 AS Select 1 INTO @x;
-ERROR HY000: View's SELECT contains a 'INTO' clause
+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 'INTO @x' at line 1
Select @x;
@x
0