I’m getting an error when trying to import files with 2-byte characters.
Only rows containing non-ASCII characters are not imported.
create table test (
txt varchar(100)
);
test_import.csv:
txt
“Ż”
error log:
9:18:54 AM Thread (40) Importing 1 out of 1 files
9:18:54 AM Thread (40) Reading from file test_import.csv
9:18:54 AM Thread (40) Row 1 failed to insert, error: ODBC Database Error
09:19:04 Thread (40) Inserting data into table public.TEST generated an error. ODBC Database Error
ODBC Database Error
[Vertica][ODBC] (10170) String data right truncation on data from data source: String data is too big for the driver's data buffer.
09:19:04 Thread (40) Import canceled and inserted rows were rolled back.