We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 288f050 commit 07bf2dbCopy full SHA for 07bf2db
fluss-lake/fluss-lake-iceberg/src/main/java/org/apache/fluss/lake/iceberg/utils/IcebergConversions.java
@@ -70,13 +70,22 @@ public static Expression toFilterExpression(
70
Expressions.and(
71
expression,
72
Expressions.equal(
73
- partitionFields.get(partitionIndex++).name(), partition));
+ table.schema()
74
+ .findColumnName(
75
+ partitionFields
76
+ .get(partitionIndex++)
77
+ .sourceId()),
78
+ partition));
79
}
80
81
expression =
82
83
- Expressions.equal(partitionFields.get(partitionIndex).name(), bucket));
84
+ Expressions.equal(
85
86
87
+ partitionFields.get(partitionIndex).sourceId()),
88
+ bucket));
89
return expression;
90
91
0 commit comments