We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143a0e4 commit 8b5c15dCopy full SHA for 8b5c15d
ice/src/test/java/com/altinity/ice/cli/internal/iceberg/PartitioningTest.java
@@ -90,7 +90,7 @@ private PartitionKey partitionOf(
90
throws IOException {
91
Map<PartitionKey, List<Record>> partition =
92
Partitioning.partition(inputFile, partitionSpec.schema(), partitionSpec);
93
- PartitionKey result = Partitioning.inferPartitionKey(metadata, partitionSpec);
+ PartitionKey result = Partitioning.inferPartitionKey(metadata, partitionSpec).partitionKey();
94
if (result != null) {
95
assertThat(partition.size()).isEqualTo(1);
96
PartitionKey expected = partition.keySet().stream().findFirst().get();
0 commit comments