Skip to content

Commit cfbf6a2

Browse files
outer -> right
1 parent a10df1f commit cfbf6a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ibis_analytics/metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def _densify(t: ibis.Table, ts_col: str, agg_col: str) -> ibis.Table:
2323
.as_table()
2424
)
2525

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

0 commit comments

Comments
 (0)