From 8993355753b64d5850edaa2afc6a9cded164c55c Mon Sep 17 00:00:00 2001 From: uros-b <221401595+uros-b@users.noreply.github.com> Date: Wed, 29 Jul 2026 21:46:21 +0000 Subject: [PATCH] API: Fix duplicated word in TestProjection comment Drops a repeated "the the" in an explanatory comment in TestProjection. Comment-only. --- .../test/java/org/apache/iceberg/transforms/TestProjection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/test/java/org/apache/iceberg/transforms/TestProjection.java b/api/src/test/java/org/apache/iceberg/transforms/TestProjection.java index f6c699f7b616..5dd1cdab869b 100644 --- a/api/src/test/java/org/apache/iceberg/transforms/TestProjection.java +++ b/api/src/test/java/org/apache/iceberg/transforms/TestProjection.java @@ -245,7 +245,7 @@ public void testBadSparkPartitionFilter() { // this tests a case that results in a full table scan in Spark with Hive tables. because the // hour field is not a partition, mixing it with partition columns in the filter expression // prevents the day/hour boundaries from being pushed to the metastore. this is an easy mistake - // when tables are normally partitioned by both hour and dateint. the the filter is: + // when tables are normally partitioned by both hour and dateint. the filter is: // // WHERE dateint = 20180416 // OR (dateint = 20180415 and hour >= 20)