diff options
Diffstat (limited to 'sql/sql_profile.h')
-rw-r--r-- | sql/sql_profile.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sql/sql_profile.h b/sql/sql_profile.h index 5b03acf59c0..85018a2598b 100644 --- a/sql/sql_profile.h +++ b/sql/sql_profile.h @@ -19,10 +19,13 @@ class Item; struct TABLE_LIST; class THD; -typedef struct st_field_info ST_FIELD_INFO; +class ST_FIELD_INFO; typedef struct st_schema_table ST_SCHEMA_TABLE; +namespace Show { extern ST_FIELD_INFO query_profile_statistics_info[]; +} // namespace Show + 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); @@ -51,6 +54,7 @@ int make_profile_table_for_show(THD *thd, ST_SCHEMA_TABLE *schema_table); #include <sys/resource.h> #endif +extern PSI_memory_key key_memory_queue_item; class PROF_MEASUREMENT; class QUERY_PROFILE; @@ -97,7 +101,8 @@ public: { struct queue_item *new_item; - new_item= (struct queue_item *) my_malloc(sizeof(struct queue_item), MYF(0)); + new_item= (struct queue_item *) my_malloc(key_memory_queue_item, + sizeof(struct queue_item), MYF(0)); new_item->payload= payload; |