diff options
author | unknown <cmiller@zippy.cornsilk.net> | 2007-10-04 10:35:09 -0400 |
---|---|---|
committer | unknown <cmiller@zippy.cornsilk.net> | 2007-10-04 10:35:09 -0400 |
commit | 5008a4e720a9ccd6ae82e9ce5f97f71727c463eb (patch) | |
tree | 458667b7d631c0749fbf84a48205659d5e8a3b90 /sql/sql_profile.h | |
parent | b86904731fb41961631f4c893ef11340de0e9614 (diff) | |
download | mariadb-git-5008a4e720a9ccd6ae82e9ce5f97f71727c463eb.tar.gz |
Track typedef'd struct. Name changed in Enterprise tree, but
community-exclusive file also referred to struct.
sql/sql_profile.cc:
Track typedef'd struct.
sql/sql_profile.h:
Track typedef'd struct.
Diffstat (limited to 'sql/sql_profile.h')
-rw-r--r-- | sql/sql_profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_profile.h b/sql/sql_profile.h index 56022de0dcc..5a28bc32442 100644 --- a/sql/sql_profile.h +++ b/sql/sql_profile.h @@ -38,7 +38,7 @@ extern const char * const _unknown_func_; #endif extern ST_FIELD_INFO query_profile_statistics_info[]; -int fill_query_profile_statistics_info(THD *thd, struct st_table_list *tables, Item *cond); +int fill_query_profile_statistics_info(THD *thd, TABLE_LIST *tables, Item *cond); int make_profile_table_for_show(THD *thd, ST_SCHEMA_TABLE *schema_table); @@ -334,7 +334,7 @@ public: bool show_profiles(); /* ... from INFORMATION_SCHEMA.PROFILING ... */ - int fill_statistics_info(THD *thd, struct st_table_list *tables, Item *cond); + int fill_statistics_info(THD *thd, TABLE_LIST *tables, Item *cond); }; # endif /* HAVE_PROFILING */ |