Skip to content

Commit e8c1fdd

Browse files
committed
fixup! Treat warning as error in CI/Dev
1 parent ea89a7e commit e8c1fdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/catalog/test_sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def test_write_pyarrow_schema(catalog: SqlCatalog, table_identifier: Identifier)
355355
namespace = Catalog.namespace_from(table_identifier_nocatalog)
356356
catalog.create_namespace(namespace)
357357
table = catalog.create_table(table_identifier, pyarrow_table.schema)
358-
table.overwrite(pyarrow_table)
358+
table.append(pyarrow_table)
359359

360360

361361
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)