Skip to content

Commit

Permalink
Fixes #384
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuernber committed Oct 25, 2023
1 parent 2a6181f commit 545c651
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tech/v3/dataset/join.clj
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
([colname lhs rhs]
(right-join colname lhs rhs {}))
([colname lhs rhs options]
(-> (hash-join colname lhs rhs (assoc options :rhs-missing? options))
(-> (hash-join colname lhs rhs (assoc options :rhs-missing? true))
:right-outer)))


Expand All @@ -343,7 +343,7 @@
([colname lhs rhs]
(left-join colname lhs rhs {}))
([colname lhs rhs options]
(-> (hash-join colname lhs rhs (assoc options :lhs-missing? options))
(-> (hash-join colname lhs rhs (assoc options :lhs-missing? true))
:left-outer)))


Expand Down

0 comments on commit 545c651

Please sign in to comment.