Skip to content

Commit 197a390

Browse files
committed
Test Iceberg 1.10.0 snapshot
1 parent 3803c25 commit 197a390

File tree

6 files changed

+11
-45
lines changed

6 files changed

+11
-45
lines changed

plugin/trino-iceberg/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@
4848
<dependency>
4949
<groupId>com.google.guava</groupId>
5050
<artifactId>guava</artifactId>
51-
<exclusions>
52-
<exclusion>
53-
<groupId>org.jspecify</groupId>
54-
<artifactId>jspecify</artifactId>
55-
</exclusion>
56-
</exclusions>
5751
</dependency>
5852

5953
<dependency>
@@ -222,12 +216,6 @@
222216
<dependency>
223217
<groupId>org.apache.iceberg</groupId>
224218
<artifactId>iceberg-aws</artifactId>
225-
<exclusions>
226-
<exclusion>
227-
<groupId>org.jspecify</groupId>
228-
<artifactId>jspecify</artifactId>
229-
</exclusion>
230-
</exclusions>
231219
</dependency>
232220

233221
<dependency>

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");

plugin/trino-lakehouse/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@
1717
<dependency>
1818
<groupId>com.google.guava</groupId>
1919
<artifactId>guava</artifactId>
20-
<exclusions>
21-
<exclusion>
22-
<groupId>org.jspecify</groupId>
23-
<artifactId>jspecify</artifactId>
24-
</exclusion>
25-
</exclusions>
2620
</dependency>
2721

2822
<dependency>
@@ -63,12 +57,6 @@
6357
<dependency>
6458
<groupId>io.trino</groupId>
6559
<artifactId>trino-hudi</artifactId>
66-
<exclusions>
67-
<exclusion>
68-
<groupId>org.jspecify</groupId>
69-
<artifactId>jspecify</artifactId>
70-
</exclusion>
71-
</exclusions>
7260
</dependency>
7361

7462
<dependency>

pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@
197197
<dep.frontend-npm.version>11.2.0</dep.frontend-npm.version>
198198
<dep.gib.version>4.5.4</dep.gib.version>
199199
<dep.httpcore5.version>5.3.4</dep.httpcore5.version>
200-
<dep.iceberg.version>1.9.1</dep.iceberg.version>
200+
<dep.iceberg.version>1.10.0-SNAPSHOT</dep.iceberg.version>
201+
<dep.jackson.version>2.19.1</dep.jackson.version>
201202
<dep.jna.version>5.17.0</dep.jna.version>
202203
<dep.jsonwebtoken.version>0.12.6</dep.jsonwebtoken.version>
203204
<dep.jts.version>1.20.0</dep.jts.version>
@@ -2413,6 +2414,13 @@
24132414
</dependencies>
24142415
</dependencyManagement>
24152416

2417+
<repositories>
2418+
<repository>
2419+
<id>apache-snapshots</id>
2420+
<url>https://repository.apache.org/content/repositories/snapshots</url>
2421+
</repository>
2422+
</repositories>
2423+
24162424
<build>
24172425
<pluginManagement>
24182426
<plugins>

testing/trino-faulttolerant-tests/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@
2323
<groupId>com.google.guava</groupId>
2424
<artifactId>guava</artifactId>
2525
<scope>runtime</scope>
26-
<exclusions>
27-
<exclusion>
28-
<groupId>org.jspecify</groupId>
29-
<artifactId>jspecify</artifactId>
30-
</exclusion>
31-
</exclusions>
3226
</dependency>
3327

3428
<dependency>

testing/trino-tests/pom.xml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@
3535
<groupId>com.google.guava</groupId>
3636
<artifactId>guava</artifactId>
3737
<scope>runtime</scope>
38-
<exclusions>
39-
<exclusion>
40-
<groupId>org.jspecify</groupId>
41-
<artifactId>jspecify</artifactId>
42-
</exclusion>
43-
</exclusions>
4438
</dependency>
4539

4640
<dependency>
@@ -342,12 +336,6 @@
342336
<groupId>org.apache.iceberg</groupId>
343337
<artifactId>iceberg-core</artifactId>
344338
<scope>test</scope>
345-
<exclusions>
346-
<exclusion>
347-
<groupId>org.jspecify</groupId>
348-
<artifactId>jspecify</artifactId>
349-
</exclusion>
350-
</exclusions>
351339
</dependency>
352340

353341
<dependency>

0 commit comments

Comments
 (0)