Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 1.7.x
-
Component/s: SQL processing
-
Labels:None
-
Patch Submitted:Yes
-
Number of attachments :
Description
A tiny improvement to eachRow().
Change
while (groovyRS.next()) { rowClosure.call(groovyRS); }
to
groovyRS.eachRow(rowClosure);
Looks like GroovyResultSet may update the row, while the current code doesn't do that. Is it still equal then?