Commit 0e331dfb authored by bell@sanja.is.com.ua's avatar bell@sanja.is.com.ua

fixed error message text

parent 4afe473e
...@@ -2606,7 +2606,7 @@ create view v2 as select * from v1; ...@@ -2606,7 +2606,7 @@ create view v2 as select * from v1;
drop table t1; drop table t1;
rename table v2 to t1; rename table v2 to t1;
select * from v1; select * from v1;
ERROR HY000: `test`.`v1` contain view recursion ERROR HY000: `test`.`v1` contains view recursion
drop view t1, v1; drop view t1, v1;
create table t1 (a int); create table t1 (a int);
create function f1() returns int create function f1() returns int
......
...@@ -5614,4 +5614,4 @@ ER_SP_NO_AGGREGATE 42000 ...@@ -5614,4 +5614,4 @@ ER_SP_NO_AGGREGATE 42000
ER_MAX_PREPARED_STMT_COUNT_REACHED 42000 ER_MAX_PREPARED_STMT_COUNT_REACHED 42000
eng "Can't create more than max_prepared_stmt_count statements (current value: %lu)" eng "Can't create more than max_prepared_stmt_count statements (current value: %lu)"
ER_VIEW_RECURSIVE ER_VIEW_RECURSIVE
eng "`%-.64s`.`%-.64s` contain view recursion" eng "`%-.64s`.`%-.64s` contains view recursion"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment