Skip to content

Commit

Permalink
5
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyiZzz committed Dec 17, 2024
1 parent 47414e2 commit 19ce8bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,10 @@ public boolean getIsExecStatusDone() {
return isExecStatusDone;
}

public void resetFinalizeArrowFlightSqlRequestFinished() {
this.finalizeArrowFlightSqlRequestFinished = false;
}

public boolean getFinalizeArrowFlightSqlRequestFinished() {
return finalizeArrowFlightSqlRequestFinished;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ public void handleQuery(String query) throws ConnectionException {
prepare(command);

ctx.setRunningQuery(query);
ctx.resetFinalizeArrowFlightSqlRequestFinished();
super.handleQuery(query);
}

Expand Down

0 comments on commit 19ce8bd

Please sign in to comment.