Skip to content

Commit 8a7b876

Browse files
committed
move InMemoryCatalog back to test_base
1 parent c7f9053 commit 8a7b876

File tree

3 files changed

+66
-286
lines changed

3 files changed

+66
-286
lines changed

pyiceberg/catalog/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,19 +144,12 @@ def load_sql(name: str, conf: Properties) -> Catalog:
144144
) from exc
145145

146146

147-
def load_in_memory(name: str, conf: Properties) -> Catalog:
148-
from pyiceberg.catalog.in_memory import InMemoryCatalog
149-
150-
return InMemoryCatalog(name, **conf)
151-
152-
153147
AVAILABLE_CATALOGS: dict[CatalogType, Callable[[str, Properties], Catalog]] = {
154148
CatalogType.REST: load_rest,
155149
CatalogType.HIVE: load_hive,
156150
CatalogType.GLUE: load_glue,
157151
CatalogType.DYNAMODB: load_dynamodb,
158152
CatalogType.SQL: load_sql,
159-
CatalogType.IN_MEMORY: load_in_memory,
160153
}
161154

162155

pyiceberg/catalog/in_memory.py

Lines changed: 0 additions & 248 deletions
This file was deleted.

0 commit comments

Comments
 (0)