Add partial :-variable expansion to psql \copy - Mailing list pgsql-hackers

From Fabien COELHO
Subject Add partial :-variable expansion to psql \copy
Date
Msg-id PR0P264MB43008330C5069ED01C89DBE7ABAD2@PR0P264MB4300.FRAP264.PROD.OUTLOOK.COM
Whole thread Raw
Responses RE: Add partial :-variable expansion to psql \copy
Re: Add partial :-variable expansion to psql \copy
List 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.

pgsql-hackers by date:

Previous
From: Yugo Nagata
Date:
Subject: Question about comments on simple_heap_update
Next
From: Fabien COELHO
Date:
Subject: RE: Add partial :-variable expansion to psql \copy