[COMMITTERS] pgsql: Fix contrib/cube and contrib/seg to build with bison 3.0.

2013-07-29 Thread Tom Lane
Fix contrib/cube and contrib/seg to build with bison 3.0. These modules used the YYPARSE_PARAM macro, which has been deprecated by the bison folk since 1.875, and which they finally removed in 3.0. Adjust the code to use the replacement facility, %parse-param, which is a much better solution anywa

[COMMITTERS] pgsql: Fix contrib/cube and contrib/seg to build with bison 3.0.

2013-07-29 Thread Tom Lane
Fix contrib/cube and contrib/seg to build with bison 3.0. These modules used the YYPARSE_PARAM macro, which has been deprecated by the bison folk since 1.875, and which they finally removed in 3.0. Adjust the code to use the replacement facility, %parse-param, which is a much better solution anywa

[COMMITTERS] pgsql: Fix contrib/cube and contrib/seg to build with bison 3.0.

2013-07-29 Thread Tom Lane
Fix contrib/cube and contrib/seg to build with bison 3.0. These modules used the YYPARSE_PARAM macro, which has been deprecated by the bison folk since 1.875, and which they finally removed in 3.0. Adjust the code to use the replacement facility, %parse-param, which is a much better solution anywa

[COMMITTERS] pgsql: Fix contrib/cube and contrib/seg to build with bison 3.0.

2013-07-29 Thread Tom Lane
Fix contrib/cube and contrib/seg to build with bison 3.0. These modules used the YYPARSE_PARAM macro, which has been deprecated by the bison folk since 1.875, and which they finally removed in 3.0. Adjust the code to use the replacement facility, %parse-param, which is a much better solution anywa

[COMMITTERS] pgsql: Fix contrib/cube and contrib/seg to build with bison 3.0.

2013-07-29 Thread Tom Lane
Fix contrib/cube and contrib/seg to build with bison 3.0. These modules used the YYPARSE_PARAM macro, which has been deprecated by the bison folk since 1.875, and which they finally removed in 3.0. Adjust the code to use the replacement facility, %parse-param, which is a much better solution anywa

[COMMITTERS] pgsql: Fix contrib/cube and contrib/seg to build with bison 3.0.

2013-07-29 Thread Tom Lane
Fix contrib/cube and contrib/seg to build with bison 3.0. These modules used the YYPARSE_PARAM macro, which has been deprecated by the bison folk since 1.875, and which they finally removed in 3.0. Adjust the code to use the replacement facility, %parse-param, which is a much better solution anywa

[COMMITTERS] pgsql: Add SQL Standard WITH ORDINALITY support for UNNEST (and any oth

2013-07-29 Thread Greg Stark
Add SQL Standard WITH ORDINALITY support for UNNEST (and any other SRF) Author: Andrew Gierth, David Fetter Reviewers: Dean Rasheed, Jeevan Chalke, Stephen Frost Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/c62736cc37f6812d1ebb41ea5a86ffe60564a1f0 Modified Files

[COMMITTERS] pgsql: Sync ECPG with WITH ORDINALITY changes

2013-07-29 Thread Greg Stark
Sync ECPG with WITH ORDINALITY changes Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/69b7d59a744134e33bbe51dab44dd4113c83b7fb Modified Files -- src/interfaces/ecpg/preproc/parse.pl |1 + src/interfaces/ecpg/preproc/parser.c

Re: [COMMITTERS] pgsql: WITH CHECK OPTION support for auto-updatable VIEWs

2013-07-29 Thread hubert depesz lubaczewski
On Thu, Jul 18, 2013 at 09:24:02PM +, Stephen Frost wrote: > WITH CHECK OPTION support for auto-updatable VIEWs > > For simple views which are automatically updatable, this patch allows > the user to specify what level of checking should be done on records > being inserted or updated. For 'LO