diff options
author | unknown <acurtis/antony@xiphis.org/ltantony.xiphis.org> | 2006-07-20 12:54:01 -0700 |
---|---|---|
committer | unknown <acurtis/antony@xiphis.org/ltantony.xiphis.org> | 2006-07-20 12:54:01 -0700 |
commit | ca78b386d6991efa3a5281d6b2b1fa692bf3a847 (patch) | |
tree | 4f23089411320a06541978a6ea4b662190a4043e /mysql-test/r/keywords.result | |
parent | 98a63cde87b4fc4fced22b12d3a0651afec9a133 (diff) | |
download | mariadb-git-ca78b386d6991efa3a5281d6b2b1fa692bf3a847.tar.gz |
Bug#19939
AUTHORS and CONTRIBUTORS are not reserved keywords.
mysql-test/r/keywords.result:
Bug#19939
Test for bug
mysql-test/t/keywords.test:
Bug#19939
Test for bug
Diffstat (limited to 'mysql-test/r/keywords.result')
-rw-r--r-- | mysql-test/r/keywords.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/keywords.result b/mysql-test/r/keywords.result index 88a0ab8abd5..597983dab7e 100644 --- a/mysql-test/r/keywords.result +++ b/mysql-test/r/keywords.result @@ -16,3 +16,19 @@ select events.binlog from events; binlog 1 drop table events; +create procedure p1() +begin +declare n int default 2; +authors: while n > 0 do +set n = n -1; +end while authors; +end| +create procedure p2() +begin +declare n int default 2; +contributors: while n > 0 do +set n = n -1; +end while contributors; +end| +drop procedure p1; +drop procedure p2; |