diff options
author | Horst Hunger <horst@mysql.com> | 2009-01-22 11:14:16 +0100 |
---|---|---|
committer | Horst Hunger <horst@mysql.com> | 2009-01-22 11:14:16 +0100 |
commit | 88a36a21574a5fd5d4a13f0fb2bfb1fd10abebb5 (patch) | |
tree | d75aceb623403e55a66e359313eda2eb4ee52c49 /sql/sql_profile.cc | |
parent | 028b0a52c3c5cae6d5024e5a45b13be856f2047c (diff) | |
parent | aec81abb3b127e9a6c68bfe9562fd3d7cd385e0b (diff) | |
download | mariadb-git-88a36a21574a5fd5d4a13f0fb2bfb1fd10abebb5.tar.gz |
Changes to WL#4681 to merge to 5.1-main tree.
Diffstat (limited to 'sql/sql_profile.cc')
-rw-r--r-- | sql/sql_profile.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_profile.cc b/sql/sql_profile.cc index c62cf6401ba..cb5b3722559 100644 --- a/sql/sql_profile.cc +++ b/sql/sql_profile.cc @@ -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 |