We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I noticed that the error message for non-equi join is incorrect, when types do not match
point.dt <- data.table(data.i=1L) seg.dt <- data.table(first.i=1L, last.i=2) seg.dt[point.dt, on=.(first.i<=data.i,last.i>=data.i)] # Error in bmerge(i, x, leftcols, rightcols, roll, rollends, nomatch, mult, : # typeof x.first.i (integer) != typeof i.data.i (double)
The type of i.data.i is integer, not double. The error message should be changed.
The text was updated successfully, but these errors were encountered:
can you guide me a little bit regarding this issue do we only need to change the bmerge.r file in the R folder @tdhock .
Sorry, something went wrong.
@tdhock it seems that this issue has been fixed by #6603
right, now the merge works (no error)
> seg.dt[point.dt, on=.(first.i<=data.i,last.i>=data.i)] first.i last.i <int> <int> 1: 1 1
Nj221102
No branches or pull requests
Hi! I noticed that the error message for non-equi join is incorrect, when types do not match
The type of i.data.i is integer, not double. The error message should be changed.
The text was updated successfully, but these errors were encountered: