diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2015-12-29 19:09:11 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2016-02-26 18:36:31 +0400 |
commit | 3692bd3238fe04e9e2fe888c8a716673325ff97f (patch) | |
tree | fef7c2732bc70882514731a24c84d91ac166e9e1 /sql/sql_view.cc | |
parent | c1d1c59888953d90ee2fb1ca32f9f44ca5b1055c (diff) | |
download | mariadb-git-3692bd3238fe04e9e2fe888c8a716673325ff97f.tar.gz |
MDEV-9488 - Table cache cleanups
Cleanup now unused arguments of tdc_open_view().
Diffstat (limited to 'sql/sql_view.cc')
-rw-r--r-- | sql/sql_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_view.cc b/sql/sql_view.cc index 5e6071b125d..4dac4f91f74 100644 --- a/sql/sql_view.cc +++ b/sql/sql_view.cc @@ -215,7 +215,7 @@ fill_defined_view_parts (THD *thd, TABLE_LIST *view) TABLE_LIST decoy; memcpy (&decoy, view, sizeof (TABLE_LIST)); - if (tdc_open_view(thd, &decoy, decoy.alias, OPEN_VIEW_NO_PARSE)) + if (tdc_open_view(thd, &decoy, OPEN_VIEW_NO_PARSE)) return TRUE; if (!lex->definer) |