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

columns with unequal length when outer join involves DataValues #163

Open
staples6 opened this issue Apr 18, 2018 · 0 comments
Open

columns with unequal length when outer join involves DataValues #163

staples6 opened this issue Apr 18, 2018 · 0 comments

Comments

@staples6
Copy link

See reproduced error below:

using IndexedTables, DataValues

x = table([1, 2, 3, 4], [11, 12, 13, 14], names = [:a, :b], pkey = :a)
y = table(DataValueArray([1, 2, 5, 6]), DataValueArray([15, 16, 17, 18]), 
               names = [:a, :c], pkey = :a)

z1 = join(x, y, how = :left) # this is an error
z2 = join(y, x, how = :left) # this is ok
z3 = join(x, dropna(y), how = :left) # this is also ok
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