diff options
author | unknown <bell@sanja.is.com.ua> | 2004-10-28 19:37:25 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-10-28 19:37:25 +0300 |
commit | 4f553314edfc04e2551fed2dc94d72f060b722e2 (patch) | |
tree | 9ac9d13e53158ee30952aed1d7b5c187e9725380 /sql/sql_view.h | |
parent | 17cf3c633eb1db29457cbd62c5fc022d07d5dd6d (diff) | |
download | mariadb-git-4f553314edfc04e2551fed2dc94d72f060b722e2.tar.gz |
VIEW support for CHECK TABLE command (WL#1984)
mysql-test/r/view.result:
test of CHECK TABLE for VIEW
mysql-test/t/view.test:
test of CHECK TABLE for VIEW
sql/handler.h:
new check message
sql/sql_table.cc:
view support for admin table
sql/sql_view.cc:
check of view MD5 added
sql/sql_view.h:
check of view MD5 added
Diffstat (limited to 'sql/sql_view.h')
-rw-r--r-- | sql/sql_view.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/sql_view.h b/sql/sql_view.h index 4cb2514f5b9..3248c8819f5 100644 --- a/sql/sql_view.h +++ b/sql/sql_view.h @@ -29,6 +29,8 @@ void insert_view_fields(List<Item> *list, TABLE_LIST *view); frm_type_enum mysql_frm_type(char *path); +int view_checksum(THD *thd, TABLE_LIST *view); + extern TYPELIB updatable_views_with_limit_typelib; #define VIEW_ANY_ACL (SELECT_ACL | UPDATE_ACL | INSERT_ACL | DELETE_ACL) |