Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
rekby committed Aug 24, 2023
1 parent b2339a1 commit 106fd0e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,17 @@ def create_table(s):
PRIMARY KEY(id)
)
PARTITION BY HASH(id)
WITH (
WITH (
STORE = COLUMN
)
"""
% table_name
)

pool.retry_operation_sync(create_table)
return table_name


@pytest.fixture()
def column_table_path(database, column_table_name) -> str:
return database + "/" + column_table_name
Expand Down

0 comments on commit 106fd0e

Please sign in to comment.