Skip to content

Commit

Permalink
Consistent order by in table and dict
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Dec 14, 2023
1 parent 8257af4 commit a0aaab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/models/channel_type/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
type_if_paid String NULL,
type_if_organic String NULL,
) ENGINE = MergeTree()
ORDER BY domain;
ORDER BY domain, kind;
"""

DROP_CHANNEL_DEFINITION_TABLE_SQL = f"DROP TABLE IF EXISTS channel_definition ON CLUSTER '{CLICKHOUSE_CLUSTER}'"
Expand Down

0 comments on commit a0aaab4

Please sign in to comment.