summaryrefslogtreecommitdiff
path: root/mysql-test/t/view.test
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2017-07-01 14:37:12 +0400
committerAlexander Barkov <bar@mariadb.org>2017-07-01 14:37:12 +0400
commit96d1cdecbe438c3fc4bf5403c16909dfeed9c970 (patch)
treedc3f5c7edc3a7d415b06bef0f2185e88879d7e0a /mysql-test/t/view.test
parent505a11d9ac83bc6ac97f238b183253878f7fd7cf (diff)
downloadmariadb-git-96d1cdecbe438c3fc4bf5403c16909dfeed9c970.tar.gz
MDEV-13197 Parser refactoring for CREATE VIEW,TRIGGER,SP,UDF,EVENT
Diffstat (limited to 'mysql-test/t/view.test')
-rw-r--r--mysql-test/t/view.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test
index f63290b7841..226ea06fd1f 100644
--- a/mysql-test/t/view.test
+++ b/mysql-test/t/view.test
@@ -6213,3 +6213,19 @@ DROP VIEW v;
--echo #
--echo # End of 10.2 tests
--echo #
+
+
+--echo #
+--echo # Start of 10.3 tests
+--echo #
+
+--echo #
+--echo # MDEV-13197 Parser refactoring for CREATE VIEW,TRIGGER,SP,UDF,EVENT
+--echo #
+
+--error ER_PARSE_ERROR
+ALTER VIEW IF NOT EXISTS v1 AS SELECT 1;
+
+--echo #
+--echo # End of 10.3 tests
+--echo #