diff --git a/ee/clickhouse/queries/funnels/funnel_time_to_convert.py b/ee/clickhouse/queries/funnels/funnel_time_to_convert.py index 3d2ebae5a7595..4e2a03110b4c6 100644 --- a/ee/clickhouse/queries/funnels/funnel_time_to_convert.py +++ b/ee/clickhouse/queries/funnels/funnel_time_to_convert.py @@ -109,7 +109,7 @@ def get_query(self) -> str: FROM step_runs GROUP BY bin_from_seconds ) results - FULL OUTER JOIN ( + RIGHT OUTER JOIN ( /* Making sure bin_count bins are returned */ /* Those not present in the results query due to lack of data simply get person_count 0 */ SELECT histogram_from_seconds + number * bin_width_seconds AS bin_from_seconds FROM system.numbers LIMIT {bin_count_identifier} + 1