Fokko commented on code in PR #1644: URL: https://github.com/apache/iceberg-python/pull/1644#discussion_r2175447965
########## tests/integration/test_reads.py: ########## @@ -1024,3 +1025,31 @@ def test_scan_with_datetime(catalog: Catalog) -> None: df = table.scan(row_filter=LessThan("datetime", yesterday)).to_pandas() assert len(df) == 0 + + +@pytest.mark.integration +# TODO: For Hive we require writing V3 +# @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")]) +@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog")]) +def test_initial_default(catalog: Catalog, spark: SparkSession) -> None: + identifier = "default.test_initial_default" + try: + catalog.drop_table(identifier) + except NoSuchTableError: + pass + + one_column = pa.table([pa.nulls(10, pa.int32())], ["some_field"]) Review Comment: Good one :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org