Re: pg_dump include/exclude fails to error

2024-03-10 Thread Magnus Hagander
On Sun, Mar 10, 2024 at 4:51 PM Pavel Stehule wrote: > > Hi > > ne 10. 3. 2024 v 15:23 odesílatel Magnus Hagander > napsal: >> >> When including tables with the new pg_dump functionality, it fails to >> error out if a table is missing, but only if more than one table is >> specified. >> >> E.g.,

Re: pg_dump include/exclude fails to error

2024-03-10 Thread Pavel Stehule
Hi ne 10. 3. 2024 v 15:23 odesílatel Magnus Hagander napsal: > When including tables with the new pg_dump functionality, it fails to > error out if a table is missing, but only if more than one table is > specified. > > E.g., if table foo exist, but not bar: > > pg_dump --table bar > pg_dump: er

Re: pg_dump include/exclude fails to error

2024-03-10 Thread Daniel Gustafsson
> On 10 Mar 2024, at 15:22, Magnus Hagander wrote: > Not having looked into the code, but it looks to me like some variable > isn't properly reset, or perhaps there is a check for existence rather > than count? Thanks for the report, I'll have a look later today when back. -- Daniel Gustafsson

pg_dump include/exclude fails to error

2024-03-10 Thread Magnus Hagander
When including tables with the new pg_dump functionality, it fails to error out if a table is missing, but only if more than one table is specified. E.g., if table foo exist, but not bar: pg_dump --table bar pg_dump: error: no matching tables were found with file "myfilter" containing just "tabl