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

Bug: TSV Separated formatter with rowmark produces comma separated output #68

Open
gasperno opened this issue Feb 24, 2024 · 0 comments · May be fixed by #69
Open

Bug: TSV Separated formatter with rowmark produces comma separated output #68

gasperno opened this issue Feb 24, 2024 · 0 comments · May be fixed by #69

Comments

@gasperno
Copy link

% cat version1.tsv
col_1	col_2	col_3
123	001	2.33
234	002	4.55
123	003	6.77
% cat version2.tsv
col_1	col_2	col_3
234	003	4.55
123	003	6.78

When I execute csvdiff -p 0,1 -s ‘\t’ -o rowmark version1.tsv version2.tsv,

Expectation

234	003	4.55	ADDED
123	003	6.78	MODIFIED
234	002	4.55	DELETED
123	001	2.33	DELETED

Actual

234	003	4.55,ADDED
123	003	6.78,MODIFIED
234	002	4.55,DELETED
123	001	2.33,DELETED

Why?

This makes it consistent and easier to parse the output for further processing.

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

Successfully merging a pull request may close this issue.

1 participant