Skip to content

Commit ec4e65f

Browse files
authored
Fix CI (#1638)
CI is failing on main branch https://github.com/apache/iceberg-python/actions/runs/13247077313/job/36976096982 Caused by merge conflict after #1140. `InMemoryCatalog` now does not automatically create the namespace.
1 parent d47970b commit ec4e65f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/io/test_pyarrow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1145,6 +1145,7 @@ def test_identity_transform_column_projection(tmp_path: str, catalog: InMemoryCa
11451145
PartitionField(2, 1000, IdentityTransform(), "partition_id"),
11461146
)
11471147

1148+
catalog.create_namespace("default")
11481149
table = catalog.create_table(
11491150
"default.test_projection_partition",
11501151
schema=schema,
@@ -1206,6 +1207,7 @@ def test_identity_transform_columns_projection(tmp_path: str, catalog: InMemoryC
12061207
PartitionField(3, 1001, IdentityTransform(), "field_3"),
12071208
)
12081209

1210+
catalog.create_namespace("default")
12091211
table = catalog.create_table(
12101212
"default.test_projection_partitions",
12111213
schema=schema,

0 commit comments

Comments
 (0)