Let's say I have an enum: CREATE TYPE foo AS ENUM ('a', 'b', 'c')
And a column in my table of type foo.
Assuming I want to insert a .tsv file that has, as the value respective to the enum column the string "a" or "b" or "c", what is the most efficient way to go about doing that ?
I have ~90 million rows here, so inserting them one by one could be considerably slower.