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 | 5fa6dbea5130ca140d0bea43b0d0a553b82cd835 (patch) | |
tree | e01d228045f0098813aa9d95c0580a3a9bf7f8c6 /sql/handler.h | |
parent | d6b2fc2f374fb6a014ff13f4f3c88d1bf8d7f07a (diff) | |
download | mariadb-git-5fa6dbea5130ca140d0bea43b0d0a553b82cd835.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 */ |