Skip to content

Commit 0d00a42

Browse files
committed
Merge branch 'hotfix_1.8_3.10.x_30118' into hotfix_1.8_3.10.x_29968
2 parents 3efd511 + 0aeafd3 commit 0d00a42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flinkx-phoenix/flinkx-phoenix-reader/src/main/java/com/dtstack/flinkx/phoenix/format/PhoenixInputFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void openInternal(InputSplit inputSplit) throws IOException {
9696

9797
statement = dbConn.createStatement(resultSetType, resultSetConcurrency);
9898

99-
statement.setFetchSize(databaseInterface.getFetchSize());
99+
statement.setFetchSize(fetchSize);
100100

101101
statement.setQueryTimeout(queryTimeOut);
102102
String querySql = buildQuerySql(inputSplit);

flinkx-phoenix5/flinkx-phoenix5-reader/src/main/java/com/dtstack/flinkx/phoenix5/format/Phoenix5InputFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void openInternal(InputSplit inputSplit) throws IOException {
9696

9797
statement = dbConn.createStatement(resultSetType, resultSetConcurrency);
9898

99-
statement.setFetchSize(databaseInterface.getFetchSize());
99+
statement.setFetchSize(fetchSize);
100100

101101
statement.setQueryTimeout(queryTimeOut);
102102
String querySql = buildQuerySql(inputSplit);

0 commit comments

Comments
 (0)