diff options
author | unknown <igor@rurik.mysql.com> | 2005-11-02 13:44:58 -0800 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2005-11-02 13:44:58 -0800 |
commit | 8a80936517515360c432312a05db232a5e4c5dba (patch) | |
tree | e01d228045f0098813aa9d95c0580a3a9bf7f8c6 /sql/share/errmsg.txt | |
parent | 02ac7bef876ba51f13c09174da7a706ea35b6613 (diff) | |
download | mariadb-git-8a80936517515360c432312a05db232a5e4c5dba.tar.gz |
#view.test#:
new file
sql_table.cc, handler.h:
Fixed bug #14540.
Added error mnemonic code HA_ADMIN_NOT_BASE_TABLE
to report that an operation cannot be applied for views.
view.test, view.result:
Added a test case for bug #14540.
errmsg.txt:
Fixed bug #14540.
Added error ER_CHECK_NOT_BASE_TABLE.
mysql-test/r/view.result:
Added a test case for bug #14540.
mysql-test/t/view.test:
Added a test case for bug #14540.
sql/handler.h:
Fixed bug #14540.
Added error mnemonic code HA_ADMIN_NOT_BASE_TABLE
to report that an operation cannot be applied for views.
sql/share/errmsg.txt:
Added error ER_CHECK_NOT_BASE_TABLE.
sql/sql_table.cc:
Fixed bug #14540.
Added error mnemonic code HA_ADMIN_NOT_BASE_TABLE
to report that an operation cannot be applied for views.
Diffstat (limited to 'sql/share/errmsg.txt')
-rw-r--r-- | sql/share/errmsg.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/share/errmsg.txt b/sql/share/errmsg.txt index f85bda90e81..0174a1ef98e 100644 --- a/sql/share/errmsg.txt +++ b/sql/share/errmsg.txt @@ -5421,3 +5421,5 @@ ER_NO_REFERENCED_ROW_2 23000 eng "Cannot add or update a child row: a foreign key constraint fails (%.192s)" ER_SP_BAD_VAR_SHADOW 42000 eng "Variable '%-.64s' must be quoted with `...`, or renamed" +ER_CHECK_NOT_BASE_TABLE 4200 + eng "You cannot apply %s to a view" |