diff options
author | cmiller@zippy.cornsilk.net <> | 2007-10-31 12:29:32 -0400 |
---|---|---|
committer | cmiller@zippy.cornsilk.net <> | 2007-10-31 12:29:32 -0400 |
commit | 8d836dd38a847fbe1c21986dae97faaf5ef83dd5 (patch) | |
tree | beaae95090d3b5ce65b7a57fdbbd2cf36a45ed3d /sql/sql_profile.cc | |
parent | 3cf16df04f9950726a3bfaa903db9cc4bedad6ff (diff) | |
download | mariadb-git-8d836dd38a847fbe1c21986dae97faaf5ef83dd5.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.cc | 6 |
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; } |