From 855f63f68f57e52fb2fad8acd746e2a9b6b82398 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Mon, 10 Feb 2025 10:14:30 -0800 Subject: [PATCH] fix ci --- tests/io/test_pyarrow.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/io/test_pyarrow.py b/tests/io/test_pyarrow.py index 250f59c54e..e2be7872a9 100644 --- a/tests/io/test_pyarrow.py +++ b/tests/io/test_pyarrow.py @@ -1145,6 +1145,7 @@ def test_identity_transform_column_projection(tmp_path: str, catalog: InMemoryCa PartitionField(2, 1000, IdentityTransform(), "partition_id"), ) + catalog.create_namespace("default") table = catalog.create_table( "default.test_projection_partition", schema=schema, @@ -1206,6 +1207,7 @@ def test_identity_transform_columns_projection(tmp_path: str, catalog: InMemoryC PartitionField(3, 1001, IdentityTransform(), "field_3"), ) + catalog.create_namespace("default") table = catalog.create_table( "default.test_projection_partitions", schema=schema,