summaryrefslogtreecommitdiff
path: root/mysql-test/t/events_bugs.test
diff options
context:
space:
mode:
authorunknown <kostja@bodhi.local>2007-03-27 22:15:51 +0400
committerunknown <kostja@bodhi.local>2007-03-27 22:15:51 +0400
commitfce728059116b131eebed402635210d4fe82ef1c (patch)
tree86d43762c35792d70ebeaf229e57d5b4c7847638 /mysql-test/t/events_bugs.test
parent587942a792f5c31d0c5fc900dcacb454a0000e13 (diff)
downloadmariadb-git-fce728059116b131eebed402635210d4fe82ef1c.tar.gz
Fix spelling (recursivity -> recursion)
mysql-test/r/events.result: Fix spelling. mysql-test/r/events_bugs.result: Fix spelling. mysql-test/r/ps.result: Fix spelling. mysql-test/t/events.test: Fix spelling. mysql-test/t/events_bugs.test: Fix spelling. mysql-test/t/ps.test: Fix spelling. sql/sql_yacc.yy: Fix spelling. sql/share/errmsg.txt: Fix spelling.
Diffstat (limited to 'mysql-test/t/events_bugs.test')
-rw-r--r--mysql-test/t/events_bugs.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/events_bugs.test b/mysql-test/t/events_bugs.test
index c1016f1752b..56c44dc3a9f 100644
--- a/mysql-test/t/events_bugs.test
+++ b/mysql-test/t/events_bugs.test
@@ -30,7 +30,7 @@ SET NAMES latin1;
# START - BUG#16408: Events: crash for an event in a procedure
#
set @a=3;
---error ER_EVENT_RECURSIVITY_FORBIDDEN
+--error ER_EVENT_RECURSION_FORBIDDEN
CREATE PROCEDURE p_16 () CREATE EVENT e_16 ON SCHEDULE EVERY @a SECOND DO SET @a=5;
#
# END - BUG#16408: Events: crash for an event in a procedure