summaryrefslogtreecommitdiff
path: root/sql/sql_profile.cc
diff options
context:
space:
mode:
authorunknown <cmiller@zippy.cornsilk.net>2007-10-31 12:29:32 -0400
committerunknown <cmiller@zippy.cornsilk.net>2007-10-31 12:29:32 -0400
commit4c0078853fbd2052270198217aa19d573a516f92 (patch)
treebeaae95090d3b5ce65b7a57fdbbd2cf36a45ed3d /sql/sql_profile.cc
parent75902e8d07fa8ae565183909cc6e6fa0defc58c1 (diff)
downloadmariadb-git-4c0078853fbd2052270198217aa19d573a516f92.tar.gz
Push history-limiting code until after the code that adds new
history entries. Lazy deletion isn't smart or useful here.
Diffstat (limited to 'sql/sql_profile.cc')
-rw-r--r--sql/sql_profile.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_profile.cc b/sql/sql_profile.cc
index 30bedcfc813..1ef7363c3a8 100644
--- a/sql/sql_profile.cc
+++ b/sql/sql_profile.cc
@@ -338,9 +338,6 @@ void PROFILING::store()
DBUG_VOID_RETURN;
}
- while (history.elements > thd->variables.profiling_history_size)
- delete history.pop();
-
if (likely(((thd)->options & OPTION_PROFILING) == 0))
DBUG_VOID_RETURN;
@@ -370,6 +367,9 @@ void PROFILING::store()
if (enabled)
current= new QUERY_PROFILE(this, thd->query, thd->query_length);
+ while (history.elements > thd->variables.profiling_history_size)
+ delete history.pop();
+
DBUG_VOID_RETURN;
}