Skip to content

Commit

Permalink
The SQL in the test needs a full outer join to cover all edge cases
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 committed May 14, 2024
1 parent 9837b36 commit 48de63a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
generated_dates.date_day,
expected_dates.expected
from generated_dates
left join expected_dates on generated_dates.date_day = expected_dates.expected
full outer join expected_dates on generated_dates.date_day = expected_dates.expected
)
SELECT * from joined
Expand Down

0 comments on commit 48de63a

Please sign in to comment.