mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fixed a warning in sql_profile.cc
This commit is contained in:
parent
ba506ca6b7
commit
b180a10233
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
array.
|
||||
*/
|
||||
table->field[0]->store((ulonglong) query->profiling_query_id);
|
||||
table->field[1]->store((ulonglong) seq); /* the step in the sequence */
|
||||
table->field[0]->store((ulonglong) query->profiling_query_id, TRUE);
|
||||
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).
|
||||
The status phrase S(n) describes the period of time that begins at
|
||||
|
|
Loading…
Add table
Reference in a new issue