Fixed a warning in sql_profile.cc

This commit is contained in:
Georgi Kodinov 2009-01-12 18:17:15 +02:00
parent e0df7f1cd5
commit b91bbba2df

View File

@ -552,8 +552,8 @@ int PROFILING::fill_statistics_info(THD *thd, TABLE_LIST *tables, Item *cond)
The order of these fields is set by the query_profile_statistics_info The order of these fields is set by the query_profile_statistics_info
array. array.
*/ */
table->field[0]->store((ulonglong) query->profiling_query_id); table->field[0]->store((ulonglong) query->profiling_query_id, TRUE);
table->field[1]->store((ulonglong) seq); /* the step in the sequence */ table->field[1]->store((ulonglong) seq, TRUE); /* the step in the sequence */
/* /*
This entry, n, has a point in time, T(n), and a status phrase, S(n). This entry, n, has a point in time, T(n), and a status phrase, S(n).
The status phrase S(n) describes the period of time that begins at The status phrase S(n) describes the period of time that begins at