Skip to content

Commit

Permalink
Update test_connection.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kesmit13 authored Aug 20, 2024
1 parent b6194b8 commit e006024
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion singlestoredb/tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2780,7 +2780,8 @@ def test_client_found_rows(self):
if self.conn.driver not in ['http', 'https']:
with s2.connect(database=type(self).dbname, client_found_rows=False) as conn:
with conn.cursor() as cur:
table_name = f'test_client_found_rows_{uuid.uuid4()}'.replace('-', '_')
tag = uuid.uuid4().replace('-', '_')
table_name = f'test_client_found_rows_{tag}'
cur.execute(f"CREATE TABLE {table_name} (id BIGINT \
PRIMARY KEY, s TEXT DEFAULT 'def');")
cur.execute(f'INSERT INTO {table_name} (id) \
Expand Down

0 comments on commit e006024

Please sign in to comment.