|
40 | 40 |
|
41 | 41 | from pyiceberg.catalog import Catalog, load_catalog |
42 | 42 | from pyiceberg.catalog.hive import HiveCatalog |
43 | | -from pyiceberg.catalog.rest import RestCatalog |
44 | 43 | from pyiceberg.catalog.sql import SqlCatalog |
45 | 44 | from pyiceberg.exceptions import NoSuchTableError |
46 | 45 | from pyiceberg.expressions import And, EqualTo, GreaterThanOrEqual, In, LessThan, Not |
@@ -885,11 +884,6 @@ def test_write_and_evolve(session_catalog: Catalog, format_version: int) -> None |
885 | 884 | @pytest.mark.parametrize("format_version", [1, 2]) |
886 | 885 | @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")]) |
887 | 886 | def test_create_table_transaction(catalog: Catalog, format_version: int) -> None: |
888 | | - if format_version == 1 and isinstance(catalog, RestCatalog): |
889 | | - pytest.skip( |
890 | | - "There is a bug in the REST catalog image (https://github.com/apache/iceberg/issues/8756) that prevents create and commit a staged version 1 table" |
891 | | - ) |
892 | | - |
893 | 887 | identifier = f"default.arrow_create_table_transaction_{catalog.name}_{format_version}" |
894 | 888 |
|
895 | 889 | try: |
@@ -942,11 +936,6 @@ def test_create_table_transaction(catalog: Catalog, format_version: int) -> None |
942 | 936 | @pytest.mark.parametrize("format_version", [1, 2]) |
943 | 937 | @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog_hive"), pytest.lazy_fixture("session_catalog")]) |
944 | 938 | def test_create_table_with_non_default_values(catalog: Catalog, table_schema_with_all_types: Schema, format_version: int) -> None: |
945 | | - if format_version == 1 and isinstance(catalog, RestCatalog): |
946 | | - pytest.skip( |
947 | | - "There is a bug in the REST catalog image (https://github.com/apache/iceberg/issues/8756) that prevents create and commit a staged version 1 table" |
948 | | - ) |
949 | | - |
950 | 939 | identifier = f"default.arrow_create_table_transaction_with_non_default_values_{catalog.name}_{format_version}" |
951 | 940 | identifier_ref = f"default.arrow_create_table_transaction_with_non_default_values_ref_{catalog.name}_{format_version}" |
952 | 941 |
|
|
0 commit comments