[COMMITTERS] pgsql: docs: mention the optimizer can increase the index usage count

2015-03-19 Thread Bruce Momjian
docs: mention the optimizer can increase the index usage count Report by Marko Tiikkaja Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/7e9ed623d9988fcb1497a2a8ca7f676a5bfa136f Modified Files -- doc/src/sgml/monitoring.sgml |7 +-- 1 file changed

[COMMITTERS] pgsql: Fix whitespace

2015-03-19 Thread Peter Eisentraut
Fix whitespace Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/28beb69f8bc4ad7f0d1daca1095e1b47ffeaf011 Modified Files -- src/backend/storage/ipc/dsm.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsql-committers mailing list (p

[COMMITTERS] pgsql: regression tests: remove polygon diagrams

2015-03-19 Thread Bruce Momjian
regression tests: remove polygon diagrams The diagrams were inaccurate. Report by Emre Hasegeli Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/05d1910c1c1f4195065882aa077114bc590b45e3 Modified Files -- src/test/regress/expected/polygon.out | 63

[COMMITTERS] pgsql: psql: allow DROP INDEX CONCURRENTLY in AUTOCOMMIT off mode

2015-03-19 Thread Bruce Momjian
psql: allow DROP INDEX CONCURRENTLY in AUTOCOMMIT off mode Previously this threw an error. Patch by Feike Steenbergen Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/788e799ed4ee9a0e87f18e0426418622972a4de4 Modified Files -- src/bin/psql/common.c | 1

[COMMITTERS] pgsql: GetUserId() changes to has_privs_of_role()

2015-03-19 Thread Stephen Frost
GetUserId() changes to has_privs_of_role() The pg_stat and pg_signal-related functions have been using GetUserId() instead of has_privs_of_role() for checking if the current user should be able to see details in pg_stat_activity or signal other processes, requiring a user to do 'SET ROLE' for inhe

[COMMITTERS] pgsql: Add flags argument to dsm_create.

2015-03-19 Thread Robert Haas
Add flags argument to dsm_create. Right now, there's only one flag, DSM_CREATE_NULL_IF_MAXSEGMENTS, which suppresses the error that would normally be thrown when the maximum number of segments already exists, instead returning NULL. It might be useful to add more flags in the future, such as one t

[COMMITTERS] pgsql: doc: ALTER DOMAIN VALIDATE CONSTRAINT can also fail

2015-03-19 Thread Bruce Momjian
doc: ALTER DOMAIN VALIDATE CONSTRAINT can also fail Document that ALTER DOMAIN VALIDATE CONSTRAINT can also fail for composite types. Report by Ondřej Bouda Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5f286c02423f28c8e4c4d07569417a3d4f40f1a0 Modified Files ---

[COMMITTERS] pgsql: Fix status reporting for terminated bgworkers that were never st

2015-03-19 Thread Robert Haas
Fix status reporting for terminated bgworkers that were never started. Previously, GetBackgroundWorkerPid() would return BGWH_NOT_YET_STARTED if the slot used for the worker registration had not been reused by unrelated activity, and BGWH_STOPPED if it had. Either way, a process that had requeste

[COMMITTERS] pgsql: Fix status reporting for terminated bgworkers that were never st

2015-03-19 Thread Robert Haas
Fix status reporting for terminated bgworkers that were never started. Previously, GetBackgroundWorkerPid() would return BGWH_NOT_YET_STARTED if the slot used for the worker registration had not been reused by unrelated activity, and BGWH_STOPPED if it had. Either way, a process that had requeste