[COMMITTERS] pgsql: Update iso.org page link

2012-12-08 Thread Peter Eisentraut
Update iso.org page link

The old one is responding with 404.

Branch
--
REL9_2_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/cedebc1fd396785ca98cec0570f1b34211b83813

Modified Files
--
doc/src/sgml/nls.sgml |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Update ISO 3166 link

2012-12-08 Thread Peter Eisentraut
Update ISO 3166 link

The old one no longer pointed to anything useful.

Branch
--
REL8_3_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/175f7a3885666416aa82e755485a0dbda48a39ee

Modified Files
--
doc/src/sgml/nls.sgml |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Update iso.org page link

2012-12-08 Thread Peter Eisentraut
Update iso.org page link

The old one is responding with 404.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/d12d9f595e1c6bc6e62b7b423762fc03ad923899

Modified Files
--
doc/src/sgml/nls.sgml |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Update iso.org page link

2012-12-08 Thread Peter Eisentraut
Update iso.org page link

The old one is responding with 404.

Branch
--
REL9_0_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/0dfbb64a2d7b8caa4ab1d40a99adbdab594397c0

Modified Files
--
doc/src/sgml/nls.sgml |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Update iso.org page link

2012-12-08 Thread Peter Eisentraut
Update iso.org page link

The old one is responding with 404.

Branch
--
REL9_1_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/8bc8f7024fd7ea63a0eff1cc296456b7c7bf7982

Modified Files
--
doc/src/sgml/nls.sgml |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Update ISO 3166 link

2012-12-08 Thread Peter Eisentraut
Update ISO 3166 link

The old one no longer pointed to anything useful.

Branch
--
REL8_4_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/a5dbb053b3c60c8fd7ea32f6356c0f1eb1e381a1

Modified Files
--
doc/src/sgml/nls.sgml |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Support automatically-updatable views.

2012-12-08 Thread Tom Lane
Support automatically-updatable views.

This patch makes "simple" views automatically updatable, without the need
to create either INSTEAD OF triggers or INSTEAD rules.  "Simple" views
are those classified as updatable according to SQL-92 rules.  The rewriter
transforms INSERT/UPDATE/DELETE commands on such views directly into an
equivalent command on the underlying table, which will generally have
noticeably better performance than is possible with either triggers or
user-written rules.  A view that has INSTEAD OF triggers or INSTEAD rules
continues to operate the same as before.

For the moment, security_barrier views are not considered simple.
Also, we do not support WITH CHECK OPTION.  These features may be
added in future.

Dean Rasheed, reviewed by Amit Kapila

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/a99c42f291421572aef2b0a9360294c7d89b8bc7

Modified Files
--
doc/src/sgml/intro.sgml   |2 +-
doc/src/sgml/ref/alter_table.sgml |8 +-
doc/src/sgml/ref/alter_view.sgml  |9 +-
doc/src/sgml/ref/create_rule.sgml |   25 +-
doc/src/sgml/ref/create_view.sgml |  125 +++-
doc/src/sgml/rules.sgml   |   47 +-
src/backend/catalog/information_schema.sql|   18 +-
src/backend/executor/execMain.c   |   20 +-
src/backend/rewrite/rewriteHandler.c  |  684 -
src/backend/utils/adt/misc.c  |   31 +
src/include/catalog/catversion.h  |2 +-
src/include/catalog/pg_proc.h |5 +
src/include/rewrite/rewriteHandler.h  |2 +
src/include/utils/builtins.h  |2 +
src/test/regress/expected/triggers.out|   14 -
src/test/regress/expected/updatable_views.out | 1069 +
src/test/regress/parallel_schedule|2 +-
src/test/regress/serial_schedule  |1 +
src/test/regress/sql/triggers.sql |7 -
src/test/regress/sql/updatable_views.sql  |  511 
20 files changed, 2491 insertions(+), 93 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix assorted bugs in privileges-for-types patch.

2012-12-08 Thread Tom Lane
Fix assorted bugs in privileges-for-types patch.

Commit 729205571e81b4767efc42ad7beb53663e08d1ff added privileges on data
types, but there were a number of oversights.  The implementation of
default privileges for types missed a few places, and pg_dump was
utterly innocent of the whole concept.  Per bug #7741 from Nathan Alden,
and subsequent wider investigation.

Branch
--
REL9_2_STABLE

Details
---
http://git.postgresql.org/pg/commitdiff/6cb8c6043ee47ced46da131bc0705e9c4bdd8667

Modified Files
--
doc/src/sgml/catalogs.sgml   |3 +-
src/backend/catalog/aclchk.c |7 ++-
src/backend/catalog/dependency.c |5 ++
src/bin/pg_dump/dumputils.c  |3 +
src/bin/pg_dump/pg_dump.c|  109 +
src/bin/pg_dump/pg_dump.h|1 +
src/bin/psql/describe.c  |   11 +++-
7 files changed, 110 insertions(+), 29 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Fix assorted bugs in privileges-for-types patch.

2012-12-08 Thread Tom Lane
Fix assorted bugs in privileges-for-types patch.

Commit 729205571e81b4767efc42ad7beb53663e08d1ff added privileges on data
types, but there were a number of oversights.  The implementation of
default privileges for types missed a few places, and pg_dump was
utterly innocent of the whole concept.  Per bug #7741 from Nathan Alden,
and subsequent wider investigation.

Branch
--
master

Details
---
http://git.postgresql.org/pg/commitdiff/b46c92112bf5afb2476d951b9817ebd8daa7b753

Modified Files
--
doc/src/sgml/catalogs.sgml   |3 +-
src/backend/catalog/aclchk.c |7 ++-
src/backend/catalog/dependency.c |5 ++
src/bin/pg_dump/dumputils.c  |3 +
src/bin/pg_dump/pg_dump.c|  109 +
src/bin/pg_dump/pg_dump.h|1 +
src/bin/psql/describe.c  |   11 +++-
7 files changed, 110 insertions(+), 29 deletions(-)


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers