Skip to content

Commit

Permalink
Chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tobymao committed May 29, 2023
1 parent a9e1483 commit e7abaef
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sqlglot/dataframe/sql/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,6 @@ def _auto_incrementing_name(self) -> str:
self.incrementing_id += 1
return name

@property
def _random_name(self) -> str:
return "r" + uuid.uuid4().hex

@property
def _random_branch_id(self) -> str:
id = self._random_id
Expand All @@ -143,7 +139,7 @@ def _random_sequence_id(self):

@property
def _random_id(self) -> str:
id = self._random_name
id = "r" + uuid.uuid4().hex
self.known_ids.add(id)
return id

Expand Down

0 comments on commit e7abaef

Please sign in to comment.