Skip to content

Commit

Permalink
Remove redundant table normalisation for version_table_name
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Coetzee <[email protected]>
  • Loading branch information
Pipboyguy committed Jun 8, 2024
1 parent 21bc285 commit 7fadbe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/lancedb/lancedb_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def get_stored_state(self, pipeline_name: str) -> Optional[StateInfo]:

def get_stored_schema_by_hash(self, schema_hash: str) -> StorageSchemaInfo:
try:
table_name = self.make_qualified_table_name(self.schema.version_table_name)
table_name = self.schema.version_table_name
response = (
self.db_client[table_name]
.search()
Expand Down

0 comments on commit 7fadbe5

Please sign in to comment.