[COMMITTERS] pgsql: pg_recvlogical: Improve --help output

2014-10-11 Thread Peter Eisentraut
pg_recvlogical: Improve --help output List the actions first, as they are the most important options. Group the other options more sensibly, consistent with the man page. Correct a few typographical errors, clarify some things. Also update the pg_receivexlog --help output to make it a bit more

[COMMITTERS] pgsql: pg_recvlogical: Improve --help output

2014-10-11 Thread Peter Eisentraut
pg_recvlogical: Improve --help output List the actions first, as they are the most important options. Group the other options more sensibly, consistent with the man page. Correct a few typographical errors, clarify some things. Also update the pg_receivexlog --help output to make it a bit more

[COMMITTERS] pgsql: Message improvements

2014-10-11 Thread Peter Eisentraut
Message improvements Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/b7a08c80283c8d564933381b24c1993d49926e15 Modified Files -- src/backend/access/nbtree/nbtpage.c |2 +- src/backend/access/transam/xlog.c |6 +++--- src/backend/commands/dbcomm

[COMMITTERS] pgsql: Message improvements

2014-10-11 Thread Peter Eisentraut
Message improvements Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/7ce2a45aeb12d3d32a5b5e334f99a67264613fc1 Modified Files -- src/backend/access/nbtree/nbtpage.c |2 +- src/backend/access/transam/xlog.c |6 +++--- src/backend/commands

[COMMITTERS] pgsql: pg_upgrade: prefix Unix shell script name output with "./"

2014-10-11 Thread Bruce Momjian
pg_upgrade: prefix Unix shell script name output with "./" This more clearly suggests the current directory. While this also works on Windows, it might be confusing. Report by Christoph Berg Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/dc9c612767f20f28f35f06d70

[COMMITTERS] pgsql: docs: remove mention that attnotnull should be changed

2014-10-11 Thread Bruce Momjian
docs: remove mention that attnotnull should be changed Report by Andres Freund Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/80e6af1272750595c02e910bde907e30c592579b Modified Files -- doc/src/sgml/catalogs.sgml |3 +-- 1 file changed, 1 insertion(+

[COMMITTERS] pgsql: regression: adjust polygon diagrams to not use tabs

2014-10-11 Thread Bruce Momjian
regression: adjust polygon diagrams to not use tabs Also, small diagram adjustments Patch by Emre Hasegeli Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4f2e5a8a84f39ec027d1018f655b85b1b1513701 Modified Files -- src/test/regress/expected/polygon.out

Re: [COMMITTERS] pgsql: Fix documentation template for CREATE TRIGGER.

2014-10-11 Thread Bruce Momjian
Did we ever address this concern? --- On Sun, Jun 22, 2014 at 12:19:49PM -0700, Jeff Davis wrote: > On Sat, 2014-06-21 at 14:21 +, Kevin Grittner wrote: > > Fix documentation template for CREATE TRIGGER. > > > > By usin

[COMMITTERS] pgsql: Improve documentation about JSONB array containment behavior.

2014-10-11 Thread Tom Lane
Improve documentation about JSONB array containment behavior. Per gripe from Josh Berkus. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/308ab77b89ec1662f24b5ab4013ff0d1bd4153a1 Modified Files -- doc/src/sgml/json.sgml | 12 ++-- 1 file

[COMMITTERS] pgsql: Improve documentation about JSONB array containment behavior.

2014-10-11 Thread Tom Lane
Improve documentation about JSONB array containment behavior. Per gripe from Josh Berkus. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/25ad5a52847699527ddba6e86aa353075e578e9b Modified Files -- doc/src/sgml/json.sgml | 12 ++-- 1 file changed

[COMMITTERS] pgsql: Fix bogus optimization in JSONB containment tests.

2014-10-11 Thread Tom Lane
Fix bogus optimization in JSONB containment tests. When determining whether one JSONB object contains another, it's okay to make a quick exit if the first object has fewer pairs than the second: because we de-duplicate keys within objects, it is impossible that the first object has all the keys th

[COMMITTERS] pgsql: Fix bogus optimization in JSONB containment tests.

2014-10-11 Thread Tom Lane
Fix bogus optimization in JSONB containment tests. When determining whether one JSONB object contains another, it's okay to make a quick exit if the first object has fewer pairs than the second: because we de-duplicate keys within objects, it is impossible that the first object has all the keys th