diff options
author | Oleksandr Byelkin <sanja@askmonty.org> | 2015-04-12 20:41:28 +1000 |
---|---|---|
committer | Daniel Black <grooverdan@users.sourceforge.net> | 2015-04-12 20:41:28 +1000 |
commit | c8dbef22add27eb6cc737b12eb80b968663d34bb (patch) | |
tree | 07bf65480972ccbf76bb058d92695da5de74e126 /sql/sql_view.h | |
parent | e5191dd11beaec44230f97ec1402439ffd27333b (diff) | |
download | mariadb-git-c8dbef22add27eb6cc737b12eb80b968663d34bb.tar.gz |
MDEV-6916 REPAIR VIEW / mysql migration
from: r4407
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 2e9c77252e8..1026c57aaaf 100644 --- a/sql/sql_view.h +++ b/sql/sql_view.h @@ -44,6 +44,8 @@ bool check_key_in_view(THD *thd, TABLE_LIST * view); bool insert_view_fields(THD *thd, List<Item> *list, TABLE_LIST *view); int view_checksum(THD *thd, TABLE_LIST *view); +int view_check(THD *thd, TABLE_LIST *view, HA_CHECK_OPT *check_opt); +int view_repair(THD *thd, TABLE_LIST *view, HA_CHECK_OPT *check_opt); extern TYPELIB updatable_views_with_limit_typelib; |