[COMMITTERS] pgsql: Add version-sensitive SQL for psql when constraints NOT VALID
Add version-sensitive SQL for psql when constraints NOT VALID Bug report and fix by Andres Freund Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/f0b8a79c4bea7bfa89245ee03abf994b027da411 Modified Files -- src/bin/psql/describe.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- 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: Small improvements to external-projects documentation.
Small improvements to external-projects documentation. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cee103da14f470d29c47827b810da44cdab2a0d2 Modified Files -- doc/src/sgml/external-projects.sgml | 42 -- 1 files changed, 25 insertions(+), 17 deletions(-) -- 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: Rearrange extension-related views as per recent discussion.
Rearrange extension-related views as per recent discussion. The original design of pg_available_extensions did not consider the possibility of version-specific control files. Split it into two views: pg_available_extensions shows information that is generic about an extension, while pg_available_extension_versions shows all available versions together with information that could be version-dependent. Also, add an SRF pg_extension_update_paths() to assist in checking that a collection of update scripts provide sane update path sequences. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/555353c0c59ada35ae59c8a76186e98d123fa8b3 Modified Files -- doc/src/sgml/catalogs.sgml | 90 +++- doc/src/sgml/extend.sgml | 14 ++ src/backend/catalog/system_views.sql | 14 +- src/backend/commands/extension.c | 409 -- src/bin/psql/tab-complete.c |2 +- src/include/catalog/catversion.h |2 +- src/include/catalog/pg_proc.h|8 +- src/include/utils/builtins.h |2 + src/test/regress/expected/rules.out | 125 ++- 9 files changed, 570 insertions(+), 96 deletions(-) -- 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: Fix MSVC build scripts for recent extension-related changes.
Fix MSVC build scripts for recent extension-related changes. Untested, but we'll soon see if the buildfarm likes this. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/01ff8dd7560f2647dccc3d70f713dd6b27bf843e Modified Files -- src/tools/msvc/Install.pm | 37 +++-- 1 files changed, 31 insertions(+), 6 deletions(-) -- 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: PITR can stop at a named restore point when recovery target = ti
PITR can stop at a named restore point when recovery target = time though must not update the last transaction timestamp. Plus comment and message cleanup for recent named restore point. Fujii Masao, minor changes by me Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5c588be729399af5cb8ec66901e3b578936823a3 Modified Files -- src/backend/access/transam/xlog.c | 30 -- 1 files changed, 20 insertions(+), 10 deletions(-) -- 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: Additional required docs for pg_constraint catalog entry
Additional required docs for pg_constraint catalog entry Noted by Bernd Helmle Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/0ff1b7350984b9e4055e9d3a37d3b875c0663ac4 Modified Files -- doc/src/sgml/catalogs.sgml |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) -- 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: Rethink naming of contrib/intagg extension.
Rethink naming of contrib/intagg extension. Initially it was called int_aggregate after the old SQL file, but since the documentation just says "intagg" and that's also the directory name, let's conform to that instead. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/74883d33730ecb69e6f4142deb8c5882af127b32 Modified Files -- contrib/intagg/Makefile |4 +- contrib/intagg/int_aggregate--1.0.sql | 32 - contrib/intagg/int_aggregate--unpackaged--1.0.sql |6 contrib/intagg/int_aggregate.control |4 -- contrib/intagg/intagg--1.0.sql| 32 + contrib/intagg/intagg--unpackaged--1.0.sql|6 contrib/intagg/intagg.control |4 ++ 7 files changed, 44 insertions(+), 44 deletions(-) -- 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: Delete stray word from comment.
Delete stray word from comment. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8e1124eeeb128ef87045debfeb8f24cd6dbab874 Modified Files -- src/backend/commands/tablecmds.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- 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: Avoid a few more SET DATA TYPE table rewrites.
Avoid a few more SET DATA TYPE table rewrites. When the new type is an unconstrained domain over the old type, we don't need to rewrite the table. Noah Misch and Robert Haas Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/0d90dc16f87bd991d7eb9f536ca46acef7586d95 Modified Files -- doc/src/sgml/ref/alter_table.sgml | 15 --- src/backend/commands/tablecmds.c | 20 2 files changed, 24 insertions(+), 11 deletions(-) -- 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: Allow make check in PL directories
Allow make check in PL directories Also add make check-world target, and refactor pg_regress invocation code in makefiles a bit. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2fd77060a2db814146cf1f6cf77755a4b4fd9a80 Modified Files -- GNUmakefile.in|5 - Makefile |2 +- src/Makefile.global.in| 16 +--- src/makefiles/pgxs.mk |8 +++- src/pl/plperl/.gitignore |2 ++ src/pl/plperl/GNUmakefile |8 +--- src/pl/plpython/.gitignore|2 ++ src/pl/plpython/Makefile | 13 + src/pl/tcl/.gitignore |2 ++ src/pl/tcl/Makefile |8 +--- src/test/regress/GNUmakefile | 17 - src/test/regress/pg_regress.c |2 +- 12 files changed, 55 insertions(+), 30 deletions(-) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers
[COMMITTERS] pgtcl - libpgtcl: * Removed arrVar variable and setting of it in
Log Message: --- * Removed arrVar variable and setting of it in Pg_result because it didn't do anything. Modified Files: -- libpgtcl: ChangeLog (r1.64 -> r1.65) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgtcl/libpgtcl/ChangeLog?r1=1.64&r2=1.65) libpgtcl/generic: pgtclCmds.c (r1.82 -> r1.83) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgtcl/libpgtcl/generic/pgtclCmds.c?r1=1.82&r2=1.83) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers