Skip to content

Commit

Permalink
Fix 339 regression with postgres update to v43.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Jan 29, 2025
1 parent 8d356a8 commit c5f6e4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.4</version>
<version>42.7.5</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public TestPostgresSchemaRead() {
this.dbmsname = "postgres";
this.dbmsproductname = "PostgreSQL";
this.storesLowerCase = true;
this.myCatalogSchema2 = "public.";
this.myCatalogSchema2 = TEST_DBNAME2.toLowerCase() + ".public.";
}

@Override
Expand Down

0 comments on commit c5f6e4b

Please sign in to comment.