[COMMITTERS] pgsql: Improve parser error location for cases where an INSERT or UPDATE

2008-10-06 Thread Tom Lane
Log Message: --- Improve parser error location for cases where an INSERT or UPDATE command supplies an expression that can't be coerced to the target column type. The code previously attempted to point at the target column name, which doesn't work at all in an INSERT with omitted column nam

[COMMITTERS] orafce - orafce: Add bitand() and fix regression tests.

2008-10-06 Thread User Itagaki
Log Message: --- Add bitand() and fix regression tests. Modified Files: -- orafce: README.orafunc (r1.28 -> r1.29) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/README.orafunc.diff?r1=1.28&r2=1.29) orafunc.sql.in (r1.43 -> r1.44)

[COMMITTERS] npgsql - Npgsql2: Test for GetFieldType with arrays.

2008-10-06 Thread User Jbcooley
Log Message: --- Test for GetFieldType with arrays. Modified Files: -- Npgsql2/testsuite/noninteractive/NUnit20: DataReaderTests.cs (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/testsuite/noninteractive/NUnit20/DataReaderTests.c

[COMMITTERS] npgsql - Npgsql2: Provide type information for arrays and ensure that

2008-10-06 Thread User Jbcooley
Log Message: --- Provide type information for arrays and ensure that NpgsqlBackendTypeInfo always has Type. Modified Files: -- Npgsql2/src/NpgsqlTypes: NpgsqlTypesHelper.cs (r1.18 -> r1.19) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Np

[COMMITTERS] pgsql: Improve backend flowchart to show more detail.

2008-10-06 Thread Bruce Momjian
Log Message: --- Improve backend flowchart to show more detail. Modified Files: -- pgsql/src/tools/backend: flow.fig (r1.15 -> r1.16) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/tools/backend/flow.fig?r1=1.15&r2=1.16) flow.gif (r1.4 -> r1.5)

[COMMITTERS] pgsql: Fix oversight in recent patch to support multiple read positions

2008-10-06 Thread Tom Lane
Log Message: --- Fix oversight in recent patch to support multiple read positions in tuplestore: in READFILE state tuplestore_select_read_pointer must save the current file seek position in the read pointer being deactivated. Modified Files: -- pgsql/src/backend/utils/sort:

[COMMITTERS] psqlodbc - psqlodbc: Remove some compiler warnings thanks to Zoltan

2008-10-06 Thread User Hinoue
Log Message: --- Remove some compiler warnings thanks to Zoltan Boszormenyi. Modified Files: -- psqlodbc: bind.c (r1.71 -> r1.72) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/bind.c.diff?r1=1.71&r2=1.72) convert.c (r1.172 -> r1.173

[COMMITTERS] pgsql: Fix up ruleutils.c for CTE features.

2008-10-06 Thread Tom Lane
Log Message: --- Fix up ruleutils.c for CTE features. The main problem was that get_name_for_var_field didn't have enough context to interpret a reference to a CTE query's output. Fixing this requires separate hacks for the regular deparse case (pg_get_ruledef) and for the EXPLAIN case, s

[COMMITTERS] pgsql: When expanding a whole-row Var into a RowExpr during

2008-10-06 Thread Tom Lane
Log Message: --- When expanding a whole-row Var into a RowExpr during ResolveNew(), attach the column alias names of the RTE referenced by the Var to the RowExpr. This is needed to allow ruleutils.c to correctly deparse FieldSelect nodes referencing such a construct. Per my recent bug repo

[COMMITTERS] orafce - orafce: Improve alligment correctness in pipe.c.

2008-10-06 Thread User Hlipa
Log Message: --- Improve alligment correctness in pipe.c. Modified Files: -- orafce: pipe.c (r1.20 -> r1.21) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/pipe.c.diff?r1=1.20&r2=1.21) shmmc.c (r1.10 -> r1.11) (http://cvs.pgfoun

[COMMITTERS] pgsql: Fix GetCTEForRTE() to deal with the possibility that the RTE it's

2008-10-06 Thread Tom Lane
Log Message: --- Fix GetCTEForRTE() to deal with the possibility that the RTE it's given came from a query level above the current ParseState. Modified Files: -- pgsql/src/backend/parser: analyze.c (r1.380 -> r1.381) (http://anoncvs.postgresql.org/cvsweb.cg

[COMMITTERS] pgsql: Use fork names instead of numbers in the file names for

2008-10-06 Thread Heikki Linnakangas
Log Message: --- Use fork names instead of numbers in the file names for additional relation forks. While the file names are not visible to users, for those that do peek into the data directory, it's nice to have more descriptive names. Per Greg Stark's suggestion. Modified Files:

[COMMITTERS] pgsql: Editorial improvements to description of pg_settings view.

2008-10-06 Thread Tom Lane
Log Message: --- Editorial improvements to description of pg_settings view. Modified Files: -- pgsql/doc/src/sgml: catalogs.sgml (r2.177 -> r2.178) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/catalogs.sgml?r1=2.177&r2=2.178) -- Sent via p

[COMMITTERS] pgsql: Add columns boot_val and reset_val to the pg_settings view, to

2008-10-06 Thread Magnus Hagander
Log Message: --- Add columns boot_val and reset_val to the pg_settings view, to expose the value a parameter has at server start and will have after RESET, respectively. Greg Smith, with some modifications by me. Modified Files: -- pgsql/doc/src/sgml: catalogs.sgm

[COMMITTERS] pgsql: Index FSMs needs to be vacuumed as well.

2008-10-06 Thread Heikki Linnakangas
Log Message: --- Index FSMs needs to be vacuumed as well. Report by Jeff Davis. Modified Files: -- pgsql/src/backend/access/gin: ginvacuum.c (r1.22 -> r1.23) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gin/ginvacuum.c?r1=1.22&r2=1.23)