pgsql: doc: Add links to tables

2022-04-22 Thread Peter Eisentraut
doc: Add links to tables Formal tables should generally have an xref in the text that points to them. Add them here. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/826be1ffb28dde083552150243dbbdcac55ab28e Modified Files -- doc/src/sgml/config.sgml

Re: pgsql: Allow db.schema.table patterns, but complain about random garbag

2022-04-22 Thread Andrew Dunstan
On 2022-04-20 We 11:52, Robert Haas wrote: > Allow db.schema.table patterns, but complain about random garbage. > > psql, pg_dump, and pg_amcheck share code to process object name > patterns like 'foo*.bar*' to match all tables with names starting in > 'bar' that are in schemas starting with 'foo

Re: pgsql: Allow db.schema.table patterns, but complain about random garbag

2022-04-22 Thread Tom Lane
Andrew Dunstan writes: > This has upset the buildfarm's msys2 animals. There appears to be some > wildcard expansion going on that causes the problem. I don't know why it > should here when it's not causing trouble elsewhere. I have tried > changing the way the tests are quoted, without success. L

Re: pgsql: Allow db.schema.table patterns, but complain about random garbag

2022-04-22 Thread Andrew Dunstan
On 2022-04-22 Fr 10:04, Tom Lane wrote: > Andrew Dunstan writes: >> This has upset the buildfarm's msys2 animals. There appears to be some >> wildcard expansion going on that causes the problem. I don't know why it >> should here when it's not causing trouble elsewhere. I have tried >> changing

pgsql: Remove some recently-added pg_dump test cases.

2022-04-22 Thread Robert Haas
Remove some recently-added pg_dump test cases. Commit d2d35479796c3510e249d6fc72adbd5df918efbf included a pretty extensive set of test cases, and some of them don't work on all of our Windows machines. This happens because IPC::Run expands its arguments as shell globs on a few machines, but doesn'

Re: pgsql: Remove some recently-added pg_dump test cases.

2022-04-22 Thread Tom Lane
Robert Haas writes: > Remove some recently-added pg_dump test cases. Um ... you needed to do that in v14, too. regards, tom lane

pgsql: Test ALIGNOF_DOUBLE==4 compatibility under ALIGNOF_DOUBLE==8.

2022-04-22 Thread Noah Misch
Test ALIGNOF_DOUBLE==4 compatibility under ALIGNOF_DOUBLE==8. Today's test case detected alignment problems only when executing on AIX. This change lets popular platforms detect the same problems. Reviewed by Masahiko Sawada. Discussion: https://postgr.es/m/[email protected].