List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:October 4 2007 2:35pm
Subject:bk commit into 5.0-community tree (cmiller:1.2525)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0-community repository of cmiller. When cmiller does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-10-04 10:35:09-04:00, cmiller@stripped +2 -0
  Track typedef'd struct.  Name changed in Enterprise tree, but
  community-exclusive file also referred to struct.

  sql/sql_profile.cc@stripped, 2007-10-04 10:35:07-04:00, cmiller@stripped +2 -2
    Track typedef'd struct.

  sql/sql_profile.h@stripped, 2007-10-04 10:35:07-04:00, cmiller@stripped +2 -2
    Track typedef'd struct.

diff -Nrup a/sql/sql_profile.cc b/sql/sql_profile.cc
--- a/sql/sql_profile.cc	2007-07-03 12:20:17 -04:00
+++ b/sql/sql_profile.cc	2007-10-04 10:35:07 -04:00
@@ -28,7 +28,7 @@ const char * const _unknown_func_ = "<un
 /**
   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)
 {
 #ifdef ENABLED_PROFILING
@@ -480,7 +480,7 @@ void PROFILING::set_query_source(char *q
   There are two ways to get to this function:  Selecting from the information
   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");
   TABLE *table= tables->table;
diff -Nrup a/sql/sql_profile.h b/sql/sql_profile.h
--- a/sql/sql_profile.h	2007-07-02 07:27:23 -04:00
+++ b/sql/sql_profile.h	2007-10-04 10:35:07 -04:00
@@ -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 */
Thread
bk commit into 5.0-community tree (cmiller:1.2525)Chad MILLER4 Oct