Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/io/r2dbc/mssql/RpcQueryMessageFlow.java
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ static Flux<Message> exchange(PreparedStatementCache statementCache, Client clie
state.update(message);

if (message instanceof ErrorToken) {
if (isPreparedStatementNotFound(((ErrorToken) message).getNumber()) && retryReprepare.compareAndSet(true, false)) {
if (retryReprepare.compareAndSet(true, false)) {
logger.debug("Prepared statement no longer valid: {}", handle);
state.update(Phase.PREPARE_RETRY);
}
Expand Down Expand Up @@ -304,7 +304,7 @@ static Flux<Message> exchange(PreparedStatementCache statementCache, Client clie
* @return
*/
private static boolean isPreparedStatementNotFound(long errorNumber) {
return errorNumber == 8179 || errorNumber == 586;
return errorNumber == 8179 || errorNumber == 586 || errorNumber == 8144 || errorNumber == 8178 ;
}

private static boolean handleSpCursorReturnValue(PreparedStatementCache statementCache, Codecs codecs, String query, Binding binding, CursorState state, boolean needsPrepare,
Expand Down