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 b95e792 commit 0390637Copy full SHA for 0390637
tests/table/test_partitioning.py
@@ -208,13 +208,7 @@ def test_transform_consistency_with_pyarrow_transform(source_type: PrimitiveType
208
]
209
for t in all_transforms:
210
if t.can_transform(source_type):
211
- try:
212
- assert t.transform(source_type)(value) == t.pyarrow_transform(source_type)(pa.array([value])).to_pylist()[0]
213
- except ValueError as e:
214
- # Skipping unsupported feature
215
- if "FeatureUnsupported => Unsupported data type for truncate transform" in str(e):
216
- continue
217
- raise
+ assert t.transform(source_type)(value) == t.pyarrow_transform(source_type)(pa.array([value])).to_pylist()[0]
218
219
220
def test_deserialize_partition_field_v2() -> None:
0 commit comments