Skip to content

Commit f771d4e

Browse files
committed
Update Iceberg to 1.9.1
1 parent ae3282b commit f771d4e

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/BaseIcebergConnectorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1068,10 +1068,10 @@ public void testCreateTableWithUnsupportedNestedFieldPartitioning()
10681068
"\\QUnable to parse partitioning value: Cannot partition by non-primitive source field: struct<3: child: optional string>");
10691069
assertQueryFails(
10701070
"CREATE TABLE test_partitioned_table_nested_field_inside_array (parent ARRAY(ROW(child VARCHAR))) WITH (partitioning = ARRAY['\"parent.child\"'])",
1071-
"\\QPartitioning field [parent.element.child] cannot be contained in a array");
1071+
"\\QUnable to parse partitioning value: Invalid partition field parent: list<struct<3: child: optional string>>");
10721072
assertQueryFails(
10731073
"CREATE TABLE test_partitioned_table_nested_field_inside_map (parent MAP(ROW(child INTEGER), ARRAY(VARCHAR))) WITH (partitioning = ARRAY['\"parent.key.child\"'])",
1074-
"\\QPartitioning field [parent.key.child] cannot be contained in a map");
1074+
"\\QUnable to parse partitioning value: Invalid partition field parent: map<struct<4: child: optional int>, list<string>>");
10751075
assertQueryFails(
10761076
"CREATE TABLE test_partitioned_table_nested_field_year_transform_in_string (parent ROW(child VARCHAR)) WITH (partitioning = ARRAY['year(\"parent.child\")'])",
10771077
"\\QUnable to parse partitioning value: Invalid source type string for transform: year");

pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
<dep.gib.version>4.5.4</dep.gib.version>
197197
<dep.google.http.client.version>1.47.0</dep.google.http.client.version>
198198
<dep.httpcore5.version>5.3.4</dep.httpcore5.version>
199-
<dep.iceberg.version>1.9.0</dep.iceberg.version>
199+
<dep.iceberg.version>1.9.1</dep.iceberg.version>
200200
<dep.jackson.version>2.19.0</dep.jackson.version>
201201
<dep.jna.version>5.17.0</dep.jna.version>
202202
<dep.jsonwebtoken.version>0.12.6</dep.jsonwebtoken.version>
@@ -2413,6 +2413,14 @@
24132413
</dependencies>
24142414
</dependencyManagement>
24152415

2416+
<repositories>
2417+
<repository>
2418+
<id>iceberg-release-candidate</id>
2419+
<name>Iceberg Release Candidate</name>
2420+
<url>https://repository.apache.org/content/repositories/orgapacheiceberg-1201/</url>
2421+
</repository>
2422+
</repositories>
2423+
24162424
<build>
24172425
<pluginManagement>
24182426
<plugins>

0 commit comments

Comments
 (0)