Skip to content

Commit

Permalink
Fix typo in column name
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed May 12, 2024
1 parent ba31b76 commit 0dc7a81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def forwards_ops(self) -> Sequence[SqlOperation]:
table_name=local_table_name,
columns=columns,
engine=table_engines.ReplacingMergeTree(
order_by="(project_id, profile_id, start_timestamp, end_timestamp, cityHash64(chunk_id))",
order_by="(project_id, profiler_id, start_timestamp, end_timestamp, cityHash64(chunk_id))",
partition_by="(retention_days, toStartOfDay(start_timestamp))",
sample_by="cityHash64(profiler_id)",
settings={"index_granularity": "8192"},
Expand Down

0 comments on commit 0dc7a81

Please sign in to comment.