diff --git a/src/tech/v3/dataset/join.clj b/src/tech/v3/dataset/join.clj index 80f9ce72..3e6009c2 100644 --- a/src/tech/v3/dataset/join.clj +++ b/src/tech/v3/dataset/join.clj @@ -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))) @@ -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)))