Skip to content

Commit e035b1c

Browse files
committed
Merging minor fix for 3.2.x
1 parent 634689e commit e035b1c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandler.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.util.Set;
2929

3030
import org.apache.ibatis.cache.CacheKey;
31+
import org.apache.ibatis.executor.ErrorContext;
3132
import org.apache.ibatis.executor.Executor;
3233
import org.apache.ibatis.executor.ExecutorException;
3334
import org.apache.ibatis.executor.loader.ResultLoader;
@@ -137,6 +138,8 @@ private void handleRefCursorOutputParameter(ResultSet rs, ParameterMapping param
137138
//
138139

139140
public List<Object> handleResultSets(Statement stmt) throws SQLException {
141+
ErrorContext.instance().activity("handling results").object(mappedStatement.getId());
142+
140143
final List<Object> multipleResults = new ArrayList<Object>();
141144

142145
int resultSetCount = 0;

0 commit comments

Comments
 (0)