Fix csv output delimiter bug (#6994)

master
Aditya Manthramurthy 6 years ago committed by Nitish Tiwari
parent 99b843a64e
commit 2aeb3fbe86
  1. 2
      pkg/s3select/format/csv/csv.go

@ -205,7 +205,7 @@ func (reader *cinput) OutputFieldDelimiter() string {
// OutputRecordDelimiter - returns the requested output record delimiter.
func (reader *cinput) OutputRecordDelimiter() string {
return reader.options.OutputFieldDelimiter
return reader.options.OutputRecordDelimiter
}
// HasHeader - returns true or false depending upon the header.

Loading…
Cancel
Save