load csv from all filenames matching ~ in directory 'data' having fields (id, field) into postgres:///pgloader?matching with fields optionally enclosed by '"', fields terminated by ',', truncate before load do $$ drop table if exists matching; $$, $$ create table matching(id int, field text); $$;