Skip to content

Commit 106fd0e

Browse files
committed
style
1 parent b2339a1 commit 106fd0e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,17 @@ def create_table(s):
155155
PRIMARY KEY(id)
156156
)
157157
PARTITION BY HASH(id)
158-
WITH (
158+
WITH (
159159
STORE = COLUMN
160160
)
161161
"""
162162
% table_name
163163
)
164+
164165
pool.retry_operation_sync(create_table)
165166
return table_name
166167

168+
167169
@pytest.fixture()
168170
def column_table_path(database, column_table_name) -> str:
169171
return database + "/" + column_table_name

0 commit comments

Comments
 (0)