Skip to content

Commit

Permalink
outer -> right
Browse files Browse the repository at this point in the history
  • Loading branch information
lostmygithubaccount committed Sep 24, 2024
1 parent a10df1f commit cfbf6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ibis_analytics/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _densify(t: ibis.Table, ts_col: str, agg_col: str) -> ibis.Table:
.as_table()
)

return t.join(ts, ts_col, how="outer").select(
return t.join(ts, ts_col, how="right").select(
**{ts_col: f"{ts_col}_right", agg_col: ibis._[agg_col].fill_null(0)},
)

Expand Down

0 comments on commit cfbf6a2

Please sign in to comment.