[COMMITTERS] pgsql: Convert psql's tab completion for backslash commands to the new

2016-01-05 Thread Tom Lane
Convert psql's tab completion for backslash commands to the new style. This requires adding some more infrastructure to handle both case-sensitive and case-insensitive matching, as well as the ability to match a prefix of a previous word. So it ends up being about a wash line-count-wise, but it's

[COMMITTERS] pgsql: Add to_regnamespace() and to_regrole() to the documentation.

2016-01-05 Thread Tom Lane
Add to_regnamespace() and to_regrole() to the documentation. Commits cb9fa802b32b222b and 0c90f6769de6a60f added these functions, but did not bother with documentation. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/83be1844acdcb0cbff31369a65ec61d588fbe9f3 Modified

[COMMITTERS] pgsql: Add to_regnamespace() and to_regrole() to the documentation.

2016-01-05 Thread Tom Lane
Add to_regnamespace() and to_regrole() to the documentation. Commits cb9fa802b32b222b and 0c90f6769de6a60f added these functions, but did not bother with documentation. Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/41abf185024c2a7d36c09e30654efe3d939362b7 M

[COMMITTERS] pgsql: Make pg_shseclabel available in early backend startup

2016-01-05 Thread Alvaro Herrera
Make pg_shseclabel available in early backend startup While the in-core authentication mechanism doesn't need to access pg_shseclabel at all, it's reasonable to think that an authentication hook will want to look at the label for the role logging in, or for rows in other catalogs used during the a

[COMMITTERS] pgsql: Make the to_reg*() functions accept text not cstring.

2016-01-05 Thread Tom Lane
Make the to_reg*() functions accept text not cstring. Using cstring as the input type was a poor decision, because that's not really a full-fledged type. In particular, it lacks implicit coercions from text or varchar, meaning that usages like to_regproc('foo'||'bar') wouldn't work; basically the

[COMMITTERS] pgsql: In opr_sanity regression test, check for unexpected uses of cstr

2016-01-05 Thread Tom Lane
In opr_sanity regression test, check for unexpected uses of cstring. In light of commit ea0d494dae0d3d6f, it seems like a good idea to add a regression test that will complain about random functions taking or returning cstring. Only I/O support functions and encoding conversion functions should b

[COMMITTERS] pgsql: Make pg_receivexlog silent with 9.3 and older servers

2016-01-05 Thread Alvaro Herrera
Make pg_receivexlog silent with 9.3 and older servers A pointless and confusing error message is shown to the user when attempting to identify a 9.3 or older remote server with a 9.5/9.6 pg_receivexlog, because the return signature of IDENTIFY_SYSTEM was changed in 9.4. There's no good reason for

[COMMITTERS] pgsql: Make pg_receivexlog silent with 9.3 and older servers

2016-01-05 Thread Alvaro Herrera
Make pg_receivexlog silent with 9.3 and older servers A pointless and confusing error message is shown to the user when attempting to identify a 9.3 or older remote server with a 9.5/9.6 pg_receivexlog, because the return signature of IDENTIFY_SYSTEM was changed in 9.4. There's no good reason for

[COMMITTERS] pgsql: Sort $(wildcard) output where needed for reproducible build outp

2016-01-05 Thread Tom Lane
Sort $(wildcard) output where needed for reproducible build output. The order of inclusion of .o files makes a difference in linker output; not a functional difference, but still a bitwise difference, which annoys some packagers who would like reproducible builds. Report and patch by Christoph Be

[COMMITTERS] pgsql: Sort $(wildcard) output where needed for reproducible build outp

2016-01-05 Thread Tom Lane
Sort $(wildcard) output where needed for reproducible build output. The order of inclusion of .o files makes a difference in linker output; not a functional difference, but still a bitwise difference, which annoys some packagers who would like reproducible builds. Report and patch by Christoph Be

[COMMITTERS] pgsql: Sort $(wildcard) output where needed for reproducible build outp

2016-01-05 Thread Tom Lane
Sort $(wildcard) output where needed for reproducible build output. The order of inclusion of .o files makes a difference in linker output; not a functional difference, but still a bitwise difference, which annoys some packagers who would like reproducible builds. Report and patch by Christoph Be

[COMMITTERS] pgsql: Sort $(wildcard) output where needed for reproducible build outp

2016-01-05 Thread Tom Lane
Sort $(wildcard) output where needed for reproducible build output. The order of inclusion of .o files makes a difference in linker output; not a functional difference, but still a bitwise difference, which annoys some packagers who would like reproducible builds. Report and patch by Christoph Be

[COMMITTERS] pgsql: Remove some ancient and unmaintained encoding-conversion test cr

2016-01-05 Thread Tom Lane
Remove some ancient and unmaintained encoding-conversion test cruft. In commit 921191912c48a68d I claimed that we weren't testing encoding conversion functions, but further poking around reveals that we did have an equivalent though hard-wired set of tests in conversion.sql. AFAICS there is no adv

[COMMITTERS] pgsql: Add scale(numeric)

2016-01-05 Thread Alvaro Herrera
Add scale(numeric) Author: Marko Tiikkaja Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/abb1733922f3ff17a514499883a549f8bd03af44 Modified Files -- doc/src/sgml/func.sgml| 13 src/backend/utils/adt/numeric.c | 17 ++

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

2016-01-05 Thread pgsql
Tag refs/tags/REL9_5_0 was created. -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Fix typo in create_transform.sgml.

2016-01-05 Thread Tatsuo Ishii
Fix typo in create_transform.sgml. Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/9919f4fef1df2edf40e1a2a2971f97ff2d23cc3c Modified Files -- doc/src/sgml/ref/create_transform.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent

[COMMITTERS] pgsql: Fix typo in create_transform.sgml.

2016-01-05 Thread Tatsuo Ishii
Fix typo in create_transform.sgml. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/65681d08b4213110a879ce6d65f10de11fe4d3cc Modified Files -- doc/src/sgml/ref/create_transform.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgs