We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d5c9fab + 7ddfe90 commit 5fa4cbcCopy full SHA for 5fa4cbc
servc/svc/com/storage/delta.py
@@ -11,7 +11,7 @@
11
12
13
class Delta(Lake[DeltaTable]):
14
- name: str = "delta"
+ _format: str = "delta"
15
16
_storageOptions: Dict[str, str] = {}
17
servc/svc/com/storage/iceberg.py
@@ -17,7 +17,7 @@
18
19
class IceBerg(Lake[Table]):
20
- name: str = "iceberg"
+ _format: str = "iceberg"
21
22
# _table
23
_catalog: Catalog
servc/svc/com/storage/lake.py
@@ -28,6 +28,8 @@ class LakeTable(TypedDict):
28
class Lake(Generic[T], StorageComponent):
29
name: str = "lake"
30
31
+ _format: str = "lake"
32
+
33
_type: ComponentType = ComponentType.LAKE
34
35
_table: LakeTable | str
0 commit comments