adding the joyn_workhorse function, always doing a full join using collapse backend, unless user-specified many-to-many join, in which case the full cartesian join from merge.data.table is used in the backend. The add_merge_report_column.R script has the function used to add a report column when the merge.data.table is used.
Always create the PR to branch DEV. never to master. We already messed up with the previous PR.
make sure all the tests pass using devtools::check().
You could, either rebase or merge DEV into your branch before you create a PR back into DEV. In this way, your branch has the most recent developments in DEV and you can even solve conflict locally.
So, I am closing this PR because it is into master.
Please, let me know if you have any questions.
Thanks.
adding the
joyn_workhorse
function, always doing a full join usingcollapse
backend, unless user-specified many-to-many join, in which case the full cartesian join frommerge.data.table
is used in the backend. Theadd_merge_report_column.R
script has the function used to add a report column when themerge.data.table
is used.