Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
bchapuis committed Nov 5, 2024
1 parent 293b7e4 commit e0ea804
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ void copyGeoParquetToPostgres() {
// Check the table in Postgres
var postgresTable = postgresStore.get("geoparquet");

for (var row : postgresTable) {
System.out.println(row);
}

assertEquals("geoparquet", postgresTable.schema().name());
assertEquals(4, postgresTable.schema().columns().size());
assertEquals(7, postgresTable.schema().columns().size());
assertEquals(5L, postgresTable.size());
assertEquals(5L, postgresTable.stream().count());
}
Expand Down

0 comments on commit e0ea804

Please sign in to comment.