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
When trying to figure out what happens in #30 I discovered that when there are rows with duplicated keys, the behaviour is odd.
It would be good to test for duplicate keys and raise an error or warning (maybe allowing user to pick how to deal with this).
What shouldn't happen is that incomplete rows cause some sort of undefined behaviour as here:
printf "a,b,c,d\n1,2,3,4\n1,2,3\n3,2,3,4" >a.csv printf "a,b,c,d\n1,2,3,4\n1,2,3,4\n3,2,3,4" >b.csv csv-diff b.csv a.csv --key a
The output makes no sense:
1 column removed 1 column removed d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to figure out what happens in #30 I discovered that when there are rows with duplicated keys, the behaviour is odd.
It would be good to test for duplicate keys and raise an error or warning (maybe allowing user to pick how to deal with this).
What shouldn't happen is that incomplete rows cause some sort of undefined behaviour as here:
The output makes no sense:
The text was updated successfully, but these errors were encountered: