Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RpcQueryMessageFlow.java to fix the bug #276 #273 #286

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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