Re: Add partial :-variable expansion to psql \copy

From: Corey Huinker <corey(dot)huinker(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Fabien COELHO <coelho(at)cri(dot)ensmp(dot)fr>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Add partial :-variable expansion to psql \copy
Date: 2025-03-31 15:53:02
Message-ID: CADkLM=ezcKzLtr_dMOGKNg_CFzav7YO+-oJtW2mJ+9ijVectAg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

>
> Anyway, my feeling about it is that \copy parsing is a huge hack
> right now, and I'd rather see it become less of a hack, that is
> more like other psql commands, instead of getting even hackier.
>

I wasn't as horrified as Tom, but it did have the feeling of it solving
half the problem.

We can already do this

COPY (SELECT :foo FROM :bar WHERE :condition) TO STDOUT \g :"myfilename"

So it seems that what we need is a good way to pipe local data to a
standard COPY command, which is then free to use the existing variable
interpolations.

If we could do this:

COPY :"myschema".:"mytable" FROM STDIN \g < :"myfilename"

that would fit our patterns most cleanly, but we would probably create a
parsing hassle for ourselves if we ever wanted to mix pipe-to with
pipe-from. It would also require checking on every command, when uploaded
\copy commands make up a very small percentage of commands issued. So I
don't think there's a good way around the asymmetry of COPY TO being a
regular \g-able command, whereas COPY FROM will always require some other
send-command.

Perhaps we create a new command \copyfrom:

COPY :"myschema".:"mytable" :options FROM STDIN \copyfrom :"myfilename"

COPY :"myschema".:"mytable" :options FROM STDIN \copyfrom
:"my_complex_command" |

If we had something like that we might be able to replace all existing uses
of \copy.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Fujii Masao 2025-03-31 16:10:12 Re: Change log level for notifying hot standby is waiting non-overflowed snapshot
Previous Message Christoph Berg 2025-03-31 15:40:20 Re: pgsql: Add memory/disk usage for Window aggregate nodes in EXPLAIN.