pgsql: Fix comment in slot.c.

2020-05-17 Thread Amit Kapila
Fix comment in slot.c. Reported-by: Sawada Masahiko Author: Sawada Masahiko Reviewed-by: Amit Kapila Backpatch-through: 9.5 Discussion: https://postgr.es/m/ca+fd4k4ws7m7yq8pqsym5wb1y75dzebtd1szjuqdfe0kjq-...@mail.gmail.com Branch -- REL_12_STABLE Details --- https://git.postgresql.org/p

pgsql: Fix comment in slot.c.

2020-05-17 Thread Amit Kapila
Fix comment in slot.c. Reported-by: Sawada Masahiko Author: Sawada Masahiko Reviewed-by: Amit Kapila Backpatch-through: 9.5 Discussion: https://postgr.es/m/ca+fd4k4ws7m7yq8pqsym5wb1y75dzebtd1szjuqdfe0kjq-...@mail.gmail.com Branch -- REL_11_STABLE Details --- https://git.postgresql.org/p

pgsql: Fix comment in slot.c.

2020-05-17 Thread Amit Kapila
Fix comment in slot.c. Reported-by: Sawada Masahiko Author: Sawada Masahiko Reviewed-by: Amit Kapila Backpatch-through: 9.5 Discussion: https://postgr.es/m/ca+fd4k4ws7m7yq8pqsym5wb1y75dzebtd1szjuqdfe0kjq-...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commi

pgsql: Fix comment in slot.c.

2020-05-17 Thread Amit Kapila
Fix comment in slot.c. Reported-by: Sawada Masahiko Author: Sawada Masahiko Reviewed-by: Amit Kapila Backpatch-through: 9.5 Discussion: https://postgr.es/m/ca+fd4k4ws7m7yq8pqsym5wb1y75dzebtd1szjuqdfe0kjq-...@mail.gmail.com Branch -- REL_10_STABLE Details --- https://git.postgresql.org/p

pgsql: Fix comment in slot.c.

2020-05-17 Thread Amit Kapila
Fix comment in slot.c. Reported-by: Sawada Masahiko Author: Sawada Masahiko Reviewed-by: Amit Kapila Backpatch-through: 9.5 Discussion: https://postgr.es/m/ca+fd4k4ws7m7yq8pqsym5wb1y75dzebtd1szjuqdfe0kjq-...@mail.gmail.com Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/p

pgsql: Fix comment in slot.c.

2020-05-17 Thread Amit Kapila
Fix comment in slot.c. Reported-by: Sawada Masahiko Author: Sawada Masahiko Reviewed-by: Amit Kapila Backpatch-through: 9.5 Discussion: https://postgr.es/m/ca+fd4k4ws7m7yq8pqsym5wb1y75dzebtd1szjuqdfe0kjq-...@mail.gmail.com Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/p

pgsql: Cosmetic improvement for psql opfamily-related information

2020-05-17 Thread Alexander Korotkov
Cosmetic improvement for psql opfamily-related information * Rename column "Opfamily Name" to "Operator family" for uniformity. * Rename column alias from "t1" to "t". Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/18b9d22cef988c4a67d440f6cafc160d9c05871b Modifi

pgsql: Fix translate_columns[] arrays in opfamily-related psql function

2020-05-17 Thread Alexander Korotkov
Fix translate_columns[] arrays in opfamily-related psql functions Make number of translate_columns elements match the number of output columns. The only "true" value, which was previously specified, seems to be intended for opfamily operator "purpose" column. But that column has already translate

pgsql: Improve ordering for \dAo and \dAp psql commands

2020-05-17 Thread Alexander Korotkov
Improve ordering for \dAo and \dAp psql commands This commit changes ORDER BY clause for \dAo and \dAp psql commands in the following way. * Operators for the same types are grouped together. * Same-class operators and procedures are listed before cross-class operators and procedures. Modifi