Skip to content

Commit

Permalink
Bump Iceberg to 1.5.0 / enable view support (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
nastra committed Mar 11, 2024
1 parent b28d18a commit 2e4d041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
}

ext {
icebergVersion = '1.4.3'
icebergVersion = '1.5.0'
hadoopVersion = '3.3.6'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ private static CatalogContext backendCatalog() throws IOException {
CatalogProperties.CATALOG_IMPL, "org.apache.iceberg.jdbc.JdbcCatalog");
catalogProperties.putIfAbsent(
CatalogProperties.URI, "jdbc:sqlite:file:/tmp/iceberg_rest_mode=memory");
catalogProperties.putIfAbsent("jdbc.schema-version", "V1");

// Configure a default location if one is not specified
String warehouseLocation = catalogProperties.get(CatalogProperties.WAREHOUSE_LOCATION);
Expand Down

0 comments on commit 2e4d041

Please sign in to comment.