Skip to content

Commit 596931f

Browse files
committed
Assign the variable correctly
1 parent d2fa471 commit 596931f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v03_pipeline/lib/misc/clickhouse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def create_staging_non_table_entities(
292292
# Handle inconsistency within ClickHouse where DB is not propagated
293293
# within the Create DB query
294294
if f'DB {Env.CLICKHOUSE_DATABASE}' not in create_entity_statement:
295-
create_entity_statement.replace(
295+
create_entity_statement = create_entity_statement.replace(
296296
'TABLE',
297297
f'DB {Env.CLICKHOUSE_DATABASE} TABLE',
298298
)

0 commit comments

Comments
 (0)