tmtben
Results
2
comments of
tmtben
Using version 1.4 with "columns" flag: ``` # csvdiff base.csv pk.csv --columns 0 csvdiff: command failed - base-file and delta-file columns count do not match ```
Maybe just replace following line https://github.com/aswinkarthik/csvdiff/blob/1007bf3599b3077a22e754281e671e8ac2996d42/cmd/config.go#L55 by this one `if len(valueColumnPositions) == 0 && baseRecordCount != deltaRecordCount {` Now, I can use "--columns 0" to compare only the first column...