Skip to content

Commit a439503

Browse files
authored
Merge pull request #64 from serv-c/drgroot-patch-1
fix(lake): expose original table
2 parents e989f15 + 274ba41 commit a439503

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

servc/svc/com/storage/lake.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ def _get_table_name(self) -> str:
5050

5151
return ".".join([schema, name_w_medallion])
5252

53+
@property
54+
def table(self) -> LakeTable | str:
55+
return self._table
56+
5357
@property
5458
def tablename(self) -> str:
5559
return self._get_table_name()

0 commit comments

Comments
 (0)