Re: pgsql: meson: docs: Add {html,man} targets, rename install-doc-*

2023-12-01 Thread Andrew Dunstan
On 2023-11-29 We 07:20, Andrew Dunstan wrote: On 2023-11-28 Tu 21:28, Andres Freund wrote: Hi, On 2023-11-23 08:32:21 -0500, Andrew Dunstan wrote: On 2023-11-20 Mo 20:53, Andres Freund wrote: meson: docs: Add {html,man} targets, rename install-doc-* We have toplevel html, man targets in t

pgsql: Check collation when creating partitioned index

2023-12-01 Thread Peter Eisentraut
Check collation when creating partitioned index When creating a partitioned index, the partition key must be a subset of the index's columns. But this currently doesn't check that the collations between the partition key and the index definition match. So you can construct a unique index that fai

pgsql: Check collation when creating partitioned index

2023-12-01 Thread Peter Eisentraut
Check collation when creating partitioned index When creating a partitioned index, the partition key must be a subset of the index's columns. But this currently doesn't check that the collations between the partition key and the index definition match. So you can construct a unique index that fai

pgsql: Check collation when creating partitioned index

2023-12-01 Thread Peter Eisentraut
Check collation when creating partitioned index When creating a partitioned index, the partition key must be a subset of the index's columns. But this currently doesn't check that the collations between the partition key and the index definition match. So you can construct a unique index that fai

pgsql: Check collation when creating partitioned index

2023-12-01 Thread Peter Eisentraut
Check collation when creating partitioned index When creating a partitioned index, the partition key must be a subset of the index's columns. But this currently doesn't check that the collations between the partition key and the index definition match. So you can construct a unique index that fai

pgsql: Check collation when creating partitioned index

2023-12-01 Thread Peter Eisentraut
Check collation when creating partitioned index When creating a partitioned index, the partition key must be a subset of the index's columns. But this currently doesn't check that the collations between the partition key and the index definition match. So you can construct a unique index that fai

pgsql: Check collation when creating partitioned index

2023-12-01 Thread Peter Eisentraut
Check collation when creating partitioned index When creating a partitioned index, the partition key must be a subset of the index's columns. But this currently doesn't check that the collations between the partition key and the index definition match. So you can construct a unique index that fai

pgsql: pgindent fix

2023-12-01 Thread Peter Eisentraut
pgindent fix for commit a11c9c42ea Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/0d93ce31a584ff454f39df9f94f84376756e074b Modified Files -- src/backend/commands/indexcmds.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-)

Re: pgsql: meson: docs: Add {html,man} targets, rename install-doc-*

2023-12-01 Thread Andres Freund
Hi, On 2023-12-01 09:04:19 -0500, Andrew Dunstan wrote: > On 2023-11-29 We 07:20, Andrew Dunstan wrote: > > On 2023-11-28 Tu 21:28, Andres Freund wrote: > > > On 2023-11-23 08:32:21 -0500, Andrew Dunstan wrote: > > > > On 2023-11-20 Mo 20:53, Andres Freund wrote: > > > > > meson: docs: Add {html,

Re: pgsql: meson: docs: Add {html,man} targets, rename install-doc-*

2023-12-01 Thread Andrew Dunstan
On 2023-12-01 Fr 09:04, Andrew Dunstan wrote: On 2023-11-29 We 07:20, Andrew Dunstan wrote: On 2023-11-28 Tu 21:28, Andres Freund wrote: Hi, On 2023-11-23 08:32:21 -0500, Andrew Dunstan wrote: On 2023-11-20 Mo 20:53, Andres Freund wrote: meson: docs: Add {html,man} targets, rename install

pgsql: Silence Valgrind complaint with EXEC_BACKEND

2023-12-01 Thread Heikki Linnakangas
Silence Valgrind complaint with EXEC_BACKEND The padding bytes written to the backend params file were uninitialized. That's harmless because we don't access the padding bytes when we read the file back in, but Valgrind doesn't know that. In any case, clear the padding bytes to make Valgrind happy