From 101e3703d9351036120811cbe2a914f64b030c66 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 26 Apr 2006 17:57:41 +0300 Subject: [PATCH] fixed error message text --- mysql-test/r/view.result | 2 +- sql/share/errmsg.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 890e5be66c6..667d10cd145 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -2606,7 +2606,7 @@ create view v2 as select * from v1; drop table t1; rename table v2 to t1; select * from v1; -ERROR HY000: `test`.`v1` contain view recursion +ERROR HY000: `test`.`v1` contains view recursion drop view t1, v1; create table t1 (a int); create function f1() returns int diff --git a/sql/share/errmsg.txt b/sql/share/errmsg.txt index 9519e77903d..1c2e073075f 100644 --- a/sql/share/errmsg.txt +++ b/sql/share/errmsg.txt @@ -5614,4 +5614,4 @@ ER_SP_NO_AGGREGATE 42000 ER_MAX_PREPARED_STMT_COUNT_REACHED 42000 eng "Can't create more than max_prepared_stmt_count statements (current value: %lu)" ER_VIEW_RECURSIVE - eng "`%-.64s`.`%-.64s` contain view recursion" + eng "`%-.64s`.`%-.64s` contains view recursion"