Skip to content

Commit

Permalink
feat(hogl): Add modifiers to query tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tkaemming committed Mar 22, 2024
1 parent 060ebc2 commit 2b3d66e
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},

Check failure on line 151 in posthog/hogql/query.py

View workflow job for this annotation

GitHub Actions / Python code quality checks

Item "None" of "HogQLQueryModifiers | None" has no attribute "model_dump"
)

error = None
Expand Down

0 comments on commit 2b3d66e

Please sign in to comment.