Skip to content
New issue

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

anti-join fails with BoundsError #304

Open
zlewko opened this issue Sep 23, 2019 · 0 comments
Open

anti-join fails with BoundsError #304

zlewko opened this issue Sep 23, 2019 · 0 comments

Comments

@zlewko
Copy link

zlewko commented Sep 23, 2019

I would expect:

using JuliaDB
t1 = table( [1:5; 1:5], 11:20, 31:40, names = [:a, :b, :c])
t2= filter(row-> (row.a==3 && row.b==13) | (row.a==5 && row.b==20),t1)
join(t1,t2,how=:anti,lkey=(:a,:b), rkey=(:a,:b))

to essentially remove t1 from t1. However it results in:
BoundsError: attempt to access 2-element Array{Int64,1} at index [6]

note: I am using #master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant