Skip to content

Commit

Permalink
feat(hogql): Add modifiers to query tags (#21112)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkaemming authored Mar 25, 2024
1 parent f1d1043 commit 3385d12
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions posthog/hogql/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ def execute_hogql_query(
has_joins="JOIN" in clickhouse_sql,
has_json_operations="JSONExtract" in clickhouse_sql or "JSONHas" in clickhouse_sql,
timings=timings_dict,
modifiers={k: v for k, v in modifiers.model_dump().items() if v is not None} if modifiers else {},
)

error = None
Expand Down

0 comments on commit 3385d12

Please sign in to comment.