Skip to content

Commit

Permalink
Fix issue with rowDeleted() causing issues with testing
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbae committed Dec 6, 2017
1 parent 9fe90f7 commit 823f08e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ public boolean next() throws SQLServerException {
} catch (SQLServerException e) {
break;
}
} while (rowDeleted()); // repeat this if the row has been deleted beforehand, for scrollable & updatable resultsets.
} while (getDeletedCurrentRow()); // repeat this if the row has been deleted beforehand, for scrollable & updatable resultsets.
boolean value = hasCurrentRow();
loggerExternal.exiting(getClassNameLogging(), "next", value);
return value;
Expand Down

0 comments on commit 823f08e

Please sign in to comment.