diff options
author | Joerg Bruehe <joerg@mysql.com> | 2009-05-28 21:58:48 +0200 |
---|---|---|
committer | Joerg Bruehe <joerg@mysql.com> | 2009-05-28 21:58:48 +0200 |
commit | f101f2b58b44c6aa6bfc56917dec755971ac6577 (patch) | |
tree | 3aed205308e722c6eca29fb36d77af687ef7bf01 /sql/sql_profile.cc | |
parent | 7ed36ee5c72f0f7cdd9743fa52675760e133e29d (diff) | |
parent | 4673975379e0ca797d7dddad7e853ce13e07bb4e (diff) | |
download | mariadb-git-f101f2b58b44c6aa6bfc56917dec755971ac6577.tar.gz |
Merge main 5.0 into 5.0-build
Diffstat (limited to 'sql/sql_profile.cc')
-rw-r--r-- | sql/sql_profile.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/sql_profile.cc b/sql/sql_profile.cc index 551a103da10..f87f92471a3 100644 --- a/sql/sql_profile.cc +++ b/sql/sql_profile.cc @@ -552,8 +552,9 @@ 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); + /* the step in the sequence */ + table->field[1]->store((ulonglong) seq, TRUE); /* 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 |