I'm using vsql
to load vertica table into csv file:
vsql -c "select * from ..." ... -o file.csv
I was surprised when I saw windows-like CRLF symbols at the end of the output file. It doesn't match to record or field separators because I use other symbols for it.
Is there any way to change behavior of vsql? In the ideal case, I would like the file to end with the last value of the last column, without any CR or LF symbols at the end.
NB Question is about setting vsql, without using other program to remove symbols from the output.