You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PartitionSpec.Builder can only build a partition spec when column names match in a case-sensitive way.
I've written a unit test (included below) that reproduces the issue. You can add this unit test to the TestPartitionSpecInfo class. The test fails at PartitionSpec.builderFor(schema).identity("DATA") because the schema's column is defined with the name "data" but the builder is looking for "DATA".
Apache Iceberg version
None
Query engine
None
Please describe the bug 🐞
PartitionSpec.Builder can only build a partition spec when column names match in a case-sensitive way.
I've written a unit test (included below) that reproduces the issue. You can add this unit test to the TestPartitionSpecInfo class. The test fails at
PartitionSpec.builderFor(schema).identity("DATA")
because the schema's column is defined with the name "data" but the builder is looking for "DATA".The text was updated successfully, but these errors were encountered: