Commit 5008a4e7 authored by unknown's avatar unknown

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.
parent b8690473
...@@ -28,7 +28,7 @@ const char * const _unknown_func_ = "<unknown>"; ...@@ -28,7 +28,7 @@ const char * const _unknown_func_ = "<unknown>";
/** /**
Connects Information_Schema and Profiling. Connects Information_Schema and Profiling.
*/ */
int fill_query_profile_statistics_info(THD *thd, struct st_table_list *tables, int fill_query_profile_statistics_info(THD *thd, TABLE_LIST *tables,
Item *cond) Item *cond)
{ {
#ifdef ENABLED_PROFILING #ifdef ENABLED_PROFILING
...@@ -480,7 +480,7 @@ void PROFILING::set_query_source(char *query_source_arg, uint query_length_arg) ...@@ -480,7 +480,7 @@ void PROFILING::set_query_source(char *query_source_arg, uint query_length_arg)
There are two ways to get to this function: Selecting from the information There are two ways to get to this function: Selecting from the information
schema, and a SHOW command. schema, and a SHOW command.
*/ */
int PROFILING::fill_statistics_info(THD *thd, struct st_table_list *tables, Item *cond) int PROFILING::fill_statistics_info(THD *thd, TABLE_LIST *tables, Item *cond)
{ {
DBUG_ENTER("PROFILING::fill_statistics_info"); DBUG_ENTER("PROFILING::fill_statistics_info");
TABLE *table= tables->table; TABLE *table= tables->table;
......
...@@ -38,7 +38,7 @@ extern const char * const _unknown_func_; ...@@ -38,7 +38,7 @@ extern const char * const _unknown_func_;
#endif #endif
extern ST_FIELD_INFO query_profile_statistics_info[]; 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); int make_profile_table_for_show(THD *thd, ST_SCHEMA_TABLE *schema_table);
...@@ -334,7 +334,7 @@ public: ...@@ -334,7 +334,7 @@ public:
bool show_profiles(); bool show_profiles();
/* ... from INFORMATION_SCHEMA.PROFILING ... */ /* ... 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 */ # endif /* HAVE_PROFILING */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment