How can I copy a text file as a single column in PostgreSQL (basically copy a text file with no delimiters for columns)?
drop table if exists txt_file;
create temp table txt_file
(
string text
);
copy txt_file (string) from '(...)/functions.txt' csv;