Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Jan 9, 2025
1 parent d7a1320 commit 62b2a13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ public int getDefaultPort() {
@Override
public String getConnectionString(String host, int port, String database) {
return "jdbc:postgresql://" + host + ":" + port + "/" + database +
"?defaultRowFetchSize=10000&reWriteBatchedInserts=true";
"?defaultRowFetchSize=1000&reWriteBatchedInserts=true";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ WITH RECURSIVE FEATURE_HIERARCHY AS
NULL AS VAL_CONTENT_MIME_TYPE,
FALSE AS IS_CYCLE,
ARRAY[]::bigint[] AS PATH
FROM @[email protected]
WHERE ID = ?
FROM (SELECT ?::bigint AS ID) F
UNION ALL SELECT
P.ID,
P.FEATURE_ID,
Expand Down

0 comments on commit 62b2a13

Please sign in to comment.