You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The task load_csv_to_postgres_via_copy considers these two fields when trying to fit the CSV into the table. Find a solution that allows a clean CSV load
The text was updated successfully, but these errors were encountered:
I tried a workaround which did not work: create a temporary table, export csv to temporary table and insert the contents of the temp. table into the resource table. It did not work because there is a trigger for the _full_text field:
create temporary table t (x1 integer, ... , x10 text)
COPY t (x1, ... , x10) from'/path/to/my_file' with (format csv)
insert into my_table (x2, x5, x7, x10)
select x2, x5, x7, x10
from t
droptable t
The task load_csv_to_postgres_via_copy considers these two fields when trying to fit the CSV into the table. Find a solution that allows a clean CSV load
The text was updated successfully, but these errors were encountered: