Re: WIP patch: add (PRE|POST)PROCESSOR options to COPY
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Andrew Dunstan <andrew@dunslane.net>
Cc: Alvaro Herrera <alvherre@2ndquadrant.com>, Simon Riggs <simon@2ndquadrant.com>, Fujii Masao <masao.fujii@gmail.com>, Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp>, Craig Ringer <ringerc@ringerc.id.au>, pgsql-hackers@postgresql.org
Date: 2012-11-14T16:56:57Z
Lists: pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes: > On 11/14/2012 11:39 AM, Tom Lane wrote: >> What happened to the previous proposal of treating the COPY >> target as a pipe specification, ie > I'd like to be able to filter STDIN if possible - with this syntax how > is COPY going to know to hook up STDIN to the program? Huh? That's fairly nonsensical for the backend-side case; there's no way that stdin (or stdout) of a backend is going to connect anywhere useful for this purpose. As for doing it on the psql side (\copy), I think it would be more or less automatic. If you do say foo | psql -c "\copy tab from 'bar |'" dbname then bar is going to inherit psql's stdin, which is coming from foo. regards, tom lane