[COMMITTERS] pgsql: doc: Avoid sidebar element

2017-08-29 Thread Peter Eisentraut
doc: Avoid sidebar element The formatting of the sidebar element didn't carry over to the new tool chain. Instead of inventing a whole new way of dealing with it, just convert the one use to a "note". Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2fa44f666

[COMMITTERS] pgsql: doc: Avoid sidebar element

2017-08-29 Thread Peter Eisentraut
doc: Avoid sidebar element The formatting of the sidebar element didn't carry over to the new tool chain. Instead of inventing a whole new way of dealing with it, just convert the one use to a "note". Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/00f6d5c2c3ae2f6d

[COMMITTERS] pgsql: Tag refs/tags/REL9_6_5 was created

2017-08-29 Thread pgsql
Tag refs/tags/REL9_6_5 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_5_9 was created

2017-08-29 Thread pgsql
Tag refs/tags/REL9_5_9 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_2_23 was created

2017-08-29 Thread pgsql
Tag refs/tags/REL9_2_23 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL_10_BETA4 was created

2017-08-29 Thread pgsql
Tag refs/tags/REL_10_BETA4 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_3_19 was created

2017-08-29 Thread pgsql
Tag refs/tags/REL9_3_19 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_4_14 was created

2017-08-29 Thread pgsql
Tag refs/tags/REL9_4_14 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Doc: document libpq's restriction to INT_MAX rows in a PGresult.

2017-08-29 Thread Tom Lane
Doc: document libpq's restriction to INT_MAX rows in a PGresult. As long as PQntuples, PQgetvalue, etc, use "int" for row numbers, we're pretty much stuck with this limitation. The documentation formerly stated that the result of PQntuples "might overflow on 32-bit operating systems", which is ju

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Teach libpq to detect integer overflow in the row count of a PGr

2017-08-29 Thread Tom Lane
Teach libpq to detect integer overflow in the row count of a PGresult. Adding more than 1 billion rows to a PGresult would overflow its ntups and tupArrSize fields, leading to client crashes. It'd be desirable to use wider fields on 64-bit machines, but because all of libpq's external APIs use pl

[COMMITTERS] pgsql: Propagate sort instrumentation from workers back to leader.

2017-08-29 Thread Robert Haas
Propagate sort instrumentation from workers back to leader. Up until now, when parallel query was used, no details about the sort method or space used by the workers were available; details were shown only for any sorting done by the leader. Fix that. Commit 1177ab1dabf72bafee8f19d904cee3a299f25

[COMMITTERS] pgsql: Push tuple limits through Gather and Gather Merge.

2017-08-29 Thread Robert Haas
Push tuple limits through Gather and Gather Merge. If we only need, say, 10 tuples in total, then we certainly don't need more than 10 tuples from any single process. Pushing down the limit lets workers exit early when possible. For Gather Merge, there is an additional benefit: a Sort immediatel

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va

[COMMITTERS] pgsql: Improve docs about numeric formatting patterns (to_char/to_numbe

2017-08-29 Thread Tom Lane
Improve docs about numeric formatting patterns (to_char/to_number). The explanation about "0" versus "9" format characters was confusing and arguably wrong; the discussion of sign handling wasn't very good either. Notably, while it's accurate to say that "FM" strips leading zeroes in date/time va