exasol/virtual-schema-common-document-files

CSV: Trim leading & trailing spaces in column names

Closed this issue · 0 comments

Leading or trailing spaces in CSV column names might cause problems because the EDML file must contain exactly the same header incl. spaces.

To avoid these issues we need to trim whitespace in CSV headers:

header1, header2, header3
val1, val2, val3

Whitespace in the rest of the CSV file is not removed.