]
Steve Ebersole closed HHH-5591.
-------------------------------
Resolution: Fixed
ConcurrentStatisticsImpl#queryExecuted() does not update
queryExecutionMaxTimeQueryString
-----------------------------------------------------------------------------------------
Key: HHH-5591
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-5591
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.5.6, 3.6.0.CR1
Reporter: Cédrik LIME
Assignee: Steve Ebersole
Priority: Minor
Fix For: 3.6.0.CR2
Original Estimate: 1h
Time Spent: 11m
Remaining Estimate: 49m
The new (3.5.0) concurrent statistics classes broke the logging of the longest query.
Path to make it work again:
in {{ConcurrentStatisticsImpl#public void queryExecuted(String hql, int rows, long
time)}}
replace
{code:java|title=ConcurrentStatisticsImpl#queryExecuted()}
for ( long old = queryExecutionMaxTime.get();
( time > old ) && ( isLongestQuery = !queryExecutionMaxTime.compareAndSet(
old, time ) );
old = queryExecutionMaxTime.get() ) {
// nothing to do here given the odd loop structure...
}
{code}
with
{code:java|title=ConcurrentStatisticsImpl#queryExecuted()}
for ( long old = queryExecutionMaxTime.get();
( isLongestQuery = time > old ) && ( !queryExecutionMaxTime.compareAndSet(
old, time ) );
old = queryExecutionMaxTime.get() ) {
// nothing to do here given the odd loop structure...
}
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: