From 545c651d9f85bb6d1c85b9551f5a65720583199c Mon Sep 17 00:00:00 2001 From: Chris Nuernberger Date: Wed, 25 Oct 2023 07:48:25 -0600 Subject: [PATCH] Fixes #384 --- src/tech/v3/dataset/join.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)))