Skip to content

Commit

Permalink
Merge pull request #3149 from malakaganga/fix_mp_consume
Browse files Browse the repository at this point in the history
Fix SqlQuery type mismatching issue
  • Loading branch information
malakaganga authored Mar 1, 2024
2 parents 3d3fbce + f11022d commit 0709bea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public class SQLQuery extends ExpressionQuery implements BatchRequestParticipant

private boolean timeConvertEnabled = true;

private static QueryType sqlQueryType;
private QueryType sqlQueryType;

/**
* thread local variable to keep the ordinal of the ref cursor if there is any
Expand Down Expand Up @@ -2571,7 +2571,7 @@ public QueryType setSqlQueryType(String query) {
return sqlQueryType = sqlQueryType(query);
}

public static QueryType sqlQueryType(String sqlQuery) {
public QueryType sqlQueryType(String sqlQuery) {

String query;
try {
Expand Down

0 comments on commit 0709bea

Please sign in to comment.