Add partial :-variable expansion to psql \copy

From: Fabien COELHO <coelho(at)cri(dot)ensmp(dot)fr>
To: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Add partial :-variable expansion to psql \copy
Date: 2025-03-31 11:48:30
Message-ID: PR0P264MB43008330C5069ED01C89DBE7ABAD2@PR0P264MB4300.FRAP264.PROD.OUTLOOK.COM
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hello,

I've been biten by psql's \copy lack of variable expansion, in a limited-access docker-inside-VM context where COPY is not a viable option and hardwired names are not desirable. The attached patch allows \copy to use variable's values in place of table and file names:

```psql
\set table 'some table'
\set input 'some file name.csv'
\copy :"table" from :'input' with (format csv)
```

--
Fabien.

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Fabien COELHO 2025-03-31 11:51:13 RE: Add partial :-variable expansion to psql \copy
Previous Message Yugo Nagata 2025-03-31 11:44:02 Question about comments on simple_heap_update