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/handler.h | |
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/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index af80f021e75..16eb8dc6f02 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -45,6 +45,7 @@ #define HA_ADMIN_REJECT -6 #define HA_ADMIN_TRY_ALTER -7 #define HA_ADMIN_WRONG_CHECKSUM -8 +#define HA_ADMIN_NOT_BASE_TABLE -9 /* Bits in table_flags() to show what database can do */ |