Closed wiluite closed 1 year ago
csvjoin --version 1.0.2 python3 --version Python 3.7.3
csvjoin --version
python3 --version
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_b.csv join_a.csv -c 2,1 --left
csvjoin join_a.csv join_b.csv -c 1,2 --right b1,b2,a1 True,Hey,
csvjoin join_a.csv join_b.csv -c 1,2 --right
Well, now with type ignorance:
csvjoin join_b.csv join_a.csv -c 2,1 --left -I b1,b2,a2 1,Hey,
csvjoin join_b.csv join_a.csv -c 2,1 --left -I
csvjoin join_a.csv join_b.csv -c 1,2 --right -I b1,b2,a1 1,Hey,1
csvjoin join_a.csv join_b.csv -c 1,2 --right -I
Files:
join_a.csv
a1,a2 1,1 1,c
join_b.csv
b1,b2 1,"Hey"
Thank you!
This was indeed a bug. Thank you!
csvjoin --version
1.0.2python3 --version
Python 3.7.3Or
csvjoin --version
1.1.1AS 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,1Files:
join_a.csv
join_b.csv
Thank you!