[COMMITTERS] pgsql: Remove redundant sentence

2014-12-17 Thread Magnus Hagander
Remove redundant sentence Spotted by David Johnston Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/9bc93a89b0ff0a95018a84deed088e68f3cc75fb Modified Files -- doc/src/sgml/protocol.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --

[COMMITTERS] pgsql: Remove redundant sentence

2014-12-17 Thread Magnus Hagander
Remove redundant sentence Spotted by David Johnston Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cb7b5c5c6f8df5fee936c6a26553427166cbdbfe Modified Files -- doc/src/sgml/protocol.sgml |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent v

[COMMITTERS] pgsql: Add missing documentation for some vcregress modes

2014-12-17 Thread Magnus Hagander
Add missing documentation for some vcregress modes Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/6964ad95d78a21e6d7aec9727ea9a0af68482c35 Modified Files -- doc/src/sgml/install-windows.sgml |3 +++ src/tools/msvc/vcregress.pl |

[COMMITTERS] pgsql: Add missing documentation for some vcregress modes

2014-12-17 Thread Magnus Hagander
Add missing documentation for some vcregress modes Michael Paquier Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/ba220850bd3be2ea6f9aee35666d5a124b8a7c38 Modified Files -- doc/src/sgml/install-windows.sgml |3 +++ src/tools/msvc/vcregress.pl

[COMMITTERS] pgsql: Update .gitignore for pg_upgrade

2014-12-17 Thread Magnus Hagander
Update .gitignore for pg_upgrade Add Windows versions of generated scripts, and make sure we only ignore the scripts int he root directory. Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cef0ae498ccbd4b166ee4fe6cb33612646fdc4b5 Modified Files -

[COMMITTERS] pgsql: Update .gitignore for pg_upgrade

2014-12-17 Thread Magnus Hagander
Update .gitignore for pg_upgrade Add Windows versions of generated scripts, and make sure we only ignore the scripts int he root directory. Michael Paquier Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/556764957185d35336f060c3d38b7f81452e0d29 Modified File

[COMMITTERS] pgsql: Update .gitignore for pg_upgrade

2014-12-17 Thread Magnus Hagander
Update .gitignore for pg_upgrade Add Windows versions of generated scripts, and make sure we only ignore the scripts int he root directory. Michael Paquier Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/741cf193b7885986e297a63d1bdef4b79d6c7d0f Modified File

[COMMITTERS] pgsql: Update .gitignore for pg_upgrade

2014-12-17 Thread Magnus Hagander
Update .gitignore for pg_upgrade Add Windows versions of generated scripts, and make sure we only ignore the scripts int he root directory. Michael Paquier Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/bf1c1f70c8904f87f791da9efa87643c16f2d159 Modified File

[COMMITTERS] pgsql: Fix poorly worded error message.

2014-12-17 Thread Tom Lane
Fix poorly worded error message. Adam Brightwell, per report from Martín Marqués. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/022d954925d73490f9771cdded16af3e94f27ec0 Modified Files -- src/backend/libpq/auth.c |5 +++-- 1 file changed, 3 in

[COMMITTERS] pgsql: Fix poorly worded error message.

2014-12-17 Thread Tom Lane
Fix poorly worded error message. Adam Brightwell, per report from Martín Marqués. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c977b8cffc76be00fbaab76e3271e05104260ec7 Modified Files -- src/backend/libpq/auth.c |5 +++-- 1 file changed, 3 insertion

[COMMITTERS] pgsql: Fix another poorly worded error message.

2014-12-17 Thread Tom Lane
Fix another poorly worded error message. Spotted by Álvaro Herrera. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/3f63b38fb252c54a2c40910dee47c2dc46cc7097 Modified Files -- src/bin/initdb/initdb.c |3 ++- 1 file changed, 2 insertions(+), 1 de

[COMMITTERS] pgsql: Fix another poorly worded error message.

2014-12-17 Thread Tom Lane
Fix another poorly worded error message. Spotted by Álvaro Herrera. Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/83fffec6000d7123a63e5f5a7d9e263e11033ab5 Modified Files -- src/bin/initdb/initdb.c |3 ++- 1 file changed, 2 insertions(+), 1 de

[COMMITTERS] pgsql: Fix another poorly worded error message.

2014-12-17 Thread Tom Lane
Fix another poorly worded error message. Spotted by Álvaro Herrera. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c340494235111fb87e46b11ca6a87a7a43795f0f Modified Files -- src/bin/initdb/initdb.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(

[COMMITTERS] pgsql: Fix another poorly worded error message.

2014-12-17 Thread Tom Lane
Fix another poorly worded error message. Spotted by Álvaro Herrera. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/d1131ae50350f971dbc28502d5f4e141d41d9c8e Modified Files -- src/bin/initdb/initdb.c |3 ++- 1 file changed, 2 insertions(+), 1 de

[COMMITTERS] pgsql: Clarify the regexp used to detect source files in MSVC builds.

2014-12-17 Thread Heikki Linnakangas
Clarify the regexp used to detect source files in MSVC builds. The old pattern would match files with strange extensions like *.ry or *.lpp. Refactor it to only include files with known extensions, and to make it more readable. Per Andrew Dunstan's suggestion. Branch -- master Details -

[COMMITTERS] pgsql: Allow CHECK constraints to be placed on foreign tables.

2014-12-17 Thread Tom Lane
Allow CHECK constraints to be placed on foreign tables. As with NOT NULL constraints, we consider that such constraints are merely reports of constraints that are being enforced by the remote server (or other underlying storage mechanism). Their only real use is to allow planner optimizations, fo

[COMMITTERS] pgsql: Fix previous commit for TAP test suites in VPATH builds.

2014-12-17 Thread Noah Misch
Fix previous commit for TAP test suites in VPATH builds. Per buildfarm member crake. Back-patch to 9.4, where the TAP suites were introduced. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/40c598fa15bef1ea10850aad80914ab797808106 Modified Files -- src/

[COMMITTERS] pgsql: Fix previous commit for TAP test suites in VPATH builds.

2014-12-17 Thread Noah Misch
Fix previous commit for TAP test suites in VPATH builds. Per buildfarm member crake. Back-patch to 9.4, where the TAP suites were introduced. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/e35e76a8f486aa397cd27f7e5104e7f0eedda877 Modified Files