summaryrefslogtreecommitdiff
path: root/sql/sql_view.h
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@mariadb.org>2015-11-18 22:55:17 +0400
committerSergey Vojtovich <svoj@mariadb.org>2015-11-26 11:34:16 +0400
commit0746a0770867b621cb4fee08239419bec69a2de8 (patch)
tree2c623b43229b17dd196fcb9c965c8c52c607f390 /sql/sql_view.h
parent464394bf478a7f3b397ec7045627f827a34c1f09 (diff)
downloadmariadb-git-0746a0770867b621cb4fee08239419bec69a2de8.tar.gz
MDEV-8718 - Obsolete sql_strmake() in favor of THD::strmake() and thd_strmake()
Diffstat (limited to 'sql/sql_view.h')
-rw-r--r--sql/sql_view.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_view.h b/sql/sql_view.h
index ce83dc656ad..9c75643fd48 100644
--- a/sql/sql_view.h
+++ b/sql/sql_view.h
@@ -51,7 +51,8 @@ int view_repair(THD *thd, TABLE_LIST *view, HA_CHECK_OPT *check_opt);
extern TYPELIB updatable_views_with_limit_typelib;
-bool check_duplicate_names(List<Item>& item_list, bool gen_unique_view_names);
+bool check_duplicate_names(THD *thd, List<Item>& item_list,
+ bool gen_unique_view_names);
bool mysql_rename_view(THD *thd, const char *new_db, const char *new_name,
TABLE_LIST *view);