Re: TAP tests for psql \g piped into program

2023-10-02 Thread Heikki Linnakangas
On 29/03/2023 21:39, Daniel Verite wrote: Peter Eisentraut wrote: So for your patch, I would just do the path adjustment ad hoc in-line. It's just one additional line. Here's the patch updated that way. Committed, thanks! -- Heikki Linnakangas Neon (https://neon.tech)

Re: TAP tests for psql \g piped into program

2023-03-29 Thread Daniel Verite
Peter Eisentraut wrote: > So for your patch, I would just do the path adjustment ad hoc in-line. > It's just one additional line. Here's the patch updated that way. Best regards, -- Daniel Vérité https://postgresql.verite.pro/ Twitter: @DanielVerite diff --git a/src/bin/psql/t/001_bas

Re: TAP tests for psql \g piped into program

2023-03-08 Thread Peter Eisentraut
On 02.01.23 22:32, Daniel Verite wrote: This is a follow-up to commit d2a44904 from the 2022-11 CF [1] The TAP tests were left out with the suggestion to use Perl instead of cat (Unix) / findstr (Windows) as the program to pipe into. PFA a patch implementing that suggestion. The perl binary re

TAP tests for psql \g piped into program

2023-01-02 Thread Daniel Verite
Hi, This is a follow-up to commit d2a44904 from the 2022-11 CF [1] The TAP tests were left out with the suggestion to use Perl instead of cat (Unix) / findstr (Windows) as the program to pipe into. PFA a patch implementing that suggestion. [1] https://commitfest.postgresql.org/40/4000/ Best re