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

csvjoin question or issue #1213

Closed
wiluite opened this issue Oct 2, 2023 · 1 comment
Closed

csvjoin question or issue #1213

wiluite opened this issue Oct 2, 2023 · 1 comment
Labels

Comments

@wiluite
Copy link

wiluite commented Oct 2, 2023

csvjoin --version
1.0.2
python3 --version
Python 3.7.3

Or
csvjoin --version
1.1.1

AS WELL

So, the question is: should we wait the same results on (the following)(or all) "SYMMETRIC" commands, or could you comment the results in the latest 2 cases (shouldn't they match?).

csvjoin join_b.csv join_a.csv -c 2,1 --left
b1,b2,a2
True,Hey,

csvjoin join_a.csv join_b.csv -c 1,2 --right
b1,b2,a1
True,Hey,

Well, now with type ignorance:

csvjoin join_b.csv join_a.csv -c 2,1 --left -I
b1,b2,a2
1,Hey,

csvjoin join_a.csv join_b.csv -c 1,2 --right -I
b1,b2,a1
1,Hey,1

Files:

join_a.csv

a1,a2
1,1
1,c

join_b.csv

b1,b2
1,"Hey"

Thank you!

@jpmckinney
Copy link
Member

This was indeed a bug. Thank you!

@jpmckinney jpmckinney added the bug label Oct 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants