summaryrefslogtreecommitdiff
path: root/mysql-test/r/comments.result
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2014-02-11 21:43:08 +0200
committerMichael Widenius <monty@askmonty.org>2014-02-11 21:43:08 +0200
commit55829ac13d763589c50b880a98664852fd7c7e99 (patch)
treec8ca868b88f21a5f10a51a340d16cf50679c2e67 /mysql-test/r/comments.result
parent1bdf2151dad679a8c13d2856d3baa32515a6db35 (diff)
downloadmariadb-git-55829ac13d763589c50b880a98664852fd7c7e99.tar.gz
Support 6 digit version numbers in executable comment syntax.
This is needed to be able to ignore executable comments from version 10.0.
Diffstat (limited to 'mysql-test/r/comments.result')
-rw-r--r--mysql-test/r/comments.result5
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/r/comments.result b/mysql-test/r/comments.result
index 8aebe95c5ac..3a752221780 100644
--- a/mysql-test/r/comments.result
+++ b/mysql-test/r/comments.result
@@ -38,11 +38,14 @@ select 1 /*M!50300 +1 */;
select 2 /*M!99999 +1 */;
2
2
+select 2 /*M!100000 +1 */;
+2
+2
select 2 /*M!0000 +1 */;
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 '0000 +1 */' at line 1
select 1/*!2*/;
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 '2*/' at line 1
-select 1/*!000002*/;
+select 1/*!0000002*/;
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 '2*/' at line 1
select 1/*!999992*/;
1