Skip to content

Commit

Permalink
perf: Fix breakdown query memory usage (#23016)
Browse files Browse the repository at this point in the history
* perf: Fix breakdown query memory usage

* fix type

* Update query snapshots

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
timgl and github-actions[bot] authored Jun 18, 2024
1 parent 44a8c5e commit 3f6c1f5
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 34 deletions.
2 changes: 2 additions & 0 deletions posthog/hogql/functions/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ def compare_types(arg_types: list[ConstantType], sig_arg_types: tuple[ConstantTy
"arrayAUC": HogQLFunctionMeta("arrayAUC", 2, 2),
"arrayMap": HogQLFunctionMeta("arrayMap", 2, None),
"arrayFill": HogQLFunctionMeta("arrayFill", 2, None),
"arrayFold": HogQLFunctionMeta("arrayFold", 3, None),
"arrayWithConstant": HogQLFunctionMeta("arrayWithConstant", 2, 2),
"arraySplit": HogQLFunctionMeta("arraySplit", 2, None),
"arrayReverseFill": HogQLFunctionMeta("arrayReverseFill", 2, None),
"arrayReverseSplit": HogQLFunctionMeta("arrayReverseSplit", 2, None),
Expand Down
Loading

0 comments on commit 3f6c1f5

Please sign in to comment.