diff options
author | Konstantin Osipov <kostja@sun.com> | 2009-10-14 15:14:58 +0400 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2009-10-14 15:14:58 +0400 |
commit | 595b8f92ae89eb2ef2d502ca80668a525ed2fa99 (patch) | |
tree | d00e87e2bd51be32ad14dc200c4e45fa3db718ad /sql/sql_show.cc | |
parent | c84a238984f3c3726fb3df0b058cc814796e6479 (diff) | |
download | mariadb-git-595b8f92ae89eb2ef2d502ca80668a525ed2fa99.tar.gz |
Backport of:
----------------------------------------------------------
revno: 2630.22.8
committer: Konstantin Osipov <konstantin@mysql.com>
branch nick: mysql-6.0-runtime
timestamp: Sun 2008-08-10 18:49:52 +0400
message:
Get rid of typedef struct for the most commonly used types:
TABLE, TABLE_SHARE, LEX. This simplifies use of tags
and forward declarations.
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 6a78975a2fb..9a2774735ad 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -3141,7 +3141,7 @@ static int fill_schema_table_from_frm(THD *thd,TABLE *table, { tbl.s= share; table_list.table= &tbl; - table_list.view= (st_lex*) share->is_view; + table_list.view= (LEX*) share->is_view; res= schema_table->process_table(thd, &table_list, table, res, db_name, table_name); closefrm(&tbl, true); |