Re: [COMMITTERS] pgsql: Add regression tests for CSV and \., and add automatic quoting of

2005-12-28 Thread Andrew Dunstan
Bruce Momjian said: > Log Message: > --- > Add regression tests for CSV and \., and add automatic quoting of a > single column dump that has a \. value, so the load works properly. I > also added documentation describing this issue. > This seems unnecessarily elaborate, in code that is al

Re: [COMMITTERS] pgsql: Add regression tests for CSV and \., and add automatic quoting of

2005-12-28 Thread Andrew Dunstan
Andrew Dunstan said: > Bruce Momjian said: >> Log Message: >> --- >> Add regression tests for CSV and \., and add automatic quoting of a single column dump that has a \. value, so the load works properly. I also added documentation describing this issue. >> > > This seems unnecessarily ela

[COMMITTERS] pgsql: Update COPY CSV \.

2005-12-28 Thread Bruce Momjian
Log Message: --- Update COPY CSV \. wording for externally created files. Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml/ref: copy.sgml (r1.70.2.1 -> r1.70.2.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/copy.sgml.di

[COMMITTERS] pgsql: Update COPY CSV \.

2005-12-28 Thread Bruce Momjian
Log Message: --- Update COPY CSV \. wording for externally created files. Modified Files: -- pgsql/doc/src/sgml/ref: copy.sgml (r1.71 -> r1.72) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/copy.sgml.diff?r1=1.71&r2=1.72) -

Re: [COMMITTERS] pgsql: Add regression tests for CSV and \., and add

2005-12-28 Thread Bruce Momjian
Andrew Dunstan wrote: > Bruce Momjian said: > > Log Message: > > --- > > Add regression tests for CSV and \., and add automatic quoting of a > > single column dump that has a \. value, so the load works properly. I > > also added documentation describing this issue. > > > > This seems unn

[COMMITTERS] pgsql: Add COPY CSV test that tests CSV output of \.

2005-12-28 Thread Bruce Momjian
Log Message: --- Add COPY CSV test that tests CSV output of \. Tags: REL8_1_STABLE Modified Files: -- pgsql/src/test/regress/expected: copy2.out (r1.22.2.1 -> r1.22.2.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/copy2

[COMMITTERS] pgsql: Add COPY CSV test that tests CSV output of \.

2005-12-28 Thread Bruce Momjian
Log Message: --- Add COPY CSV test that tests CSV output of \. Modified Files: -- pgsql/src/test/regress/expected: copy2.out (r1.23 -> r1.24) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/expected/copy2.out.diff?r1=1.23&r2=1.24) pgs

Re: [COMMITTERS] pgsql: Add regression tests for CSV and \., and add

2005-12-28 Thread Bruce Momjian
Andrew Dunstan wrote: > Andrew Dunstan said: > > Bruce Momjian said: > >> Log Message: > >> --- > >> Add regression tests for CSV and \., and add automatic quoting of a > single column dump that has a \. value, so the load works properly. I also > added documentation describing this issue.

Re: [COMMITTERS] pgsql: Add regression tests for CSV and \., and add

2005-12-28 Thread Andrew Dunstan
Bruce Momjian said: >> Now that I've woken up properly I realise that it's also just wrong - >> it will miss the case we need to catch of the first column of a >> multi-column line beginning with \. - just treat them all the same and >> all will be well. >> >> Also, this test is suspicious: >> >>

Re: [COMMITTERS] pgsql: Add regression tests for CSV and \., and add

2005-12-28 Thread Bruce Momjian
Andrew Dunstan wrote: > Bruce Momjian said: > >> Now that I've woken up properly I realise that it's also just wrong - > >> it will miss the case we need to catch of the first column of a > >> multi-column line beginning with \. - just treat them all the same and > >> all will be well. > >> > >> Al

[COMMITTERS] pgsql: Remove silly use of DLLIMPORT.

2005-12-28 Thread Tom Lane
Log Message: --- Remove silly use of DLLIMPORT. Modified Files: -- pgsql/src/backend/utils/misc: guc.c (r1.303 -> r1.304) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/guc.c.diff?r1=1.303&r2=1.304) ---(end

[COMMITTERS] pgsql: Mention "table" in "violates foreign key constraint" message that

2005-12-28 Thread Bruce Momjian
Log Message: --- Mention "table" in "violates foreign key constraint" message that was lacking it. Perhaps it was suppressed because of line length considerations, but "table" should appear. Modified Files: -- pgsql/src/backend/utils/adt: ri_triggers.c (r1.83 -> r1

[COMMITTERS] python - be: Add box accessors.

2005-12-28 Thread James William Pye
Log Message: --- Add box accessors. Modified Files: -- be/src/type: geometric.c (r1.7 -> r1.8) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/type/geometric.c.diff?r1=1.7&r2=1.8) ---(end of broadcast)

[COMMITTERS] pgsql: Move plpgsql's fetchArgInfo() into funcapi.c, and rename to

2005-12-28 Thread Tom Lane
Log Message: --- Move plpgsql's fetchArgInfo() into funcapi.c, and rename to get_func_arg_info() for consistency with other names there. This code will probably be useful to other PLs when they start to support OUT parameters, so better to have it in the main backend. Also, fix plpgsql vali

[COMMITTERS] pgsql: Fix plperl validator to honor check_function_bodies: when that is

2005-12-28 Thread Tom Lane
Log Message: --- Fix plperl validator to honor check_function_bodies: when that is OFF, we want it to check the argument/result data types and no more. In particular, libperl shouldn't get initialized in this case. Modified Files: -- pgsql/src/pl/plperl: plperl.c (

[COMMITTERS] python - be: Add circle accessors.

2005-12-28 Thread James William Pye
Log Message: --- Add circle accessors. Modified Files: -- be/src/type: geometric.c (r1.8 -> r1.9) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/type/geometric.c.diff?r1=1.8&r2=1.9) ---(end of broadcast)-

[COMMITTERS] python - be: Add sequence accessors to varchar and bpchar.

2005-12-28 Thread James William Pye
Log Message: --- Add sequence accessors to varchar and bpchar. Uses text_as_sequence, and thus text(varlena) functions. Modified Files: -- be/src/type: textual.c (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/type/textual.c.diff?

[COMMITTERS] python - be: Include Python's compile.h for Darwin or Python2.3.

2005-12-28 Thread James William Pye
Log Message: --- Include Python's compile.h for Darwin or Python2.3. Modified Files: -- be/src: function.c (r1.17 -> r1.18) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/function.c.diff?r1=1.17&r2=1.18) ---(end of broad

[COMMITTERS] pgsql: Update regression tests for new referential integrity error

2005-12-28 Thread Bruce Momjian
Log Message: --- Update regression tests for new referential integrity error message wording ("table" added). Modified Files: -- pgsql/src/test/regress/expected: foreign_key.out (r1.40 -> r1.41) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/reg

[COMMITTERS] pgsql: Arrange to set the LC_XXX environment variables to match our

2005-12-28 Thread Tom Lane
Log Message: --- Arrange to set the LC_XXX environment variables to match our locale setup. This protects against undesired changes in locale behavior if someone carelessly does setlocale(LC_ALL, "") (and we know who you are, perl guys). Modified Files: -- pgsql/src/backen

[COMMITTERS] python - be: Clear up warnings.

2005-12-28 Thread James William Pye
Log Message: --- Clear up warnings. Primarily some unitialized variable warnings that deal with PG_TRY/PG_CATCH and some missing headers and prototypes. Modified Files: -- be/include/pypg: type.h (r1.11 -> r1.12) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cg

[COMMITTERS] npgsql - Npgsql: 2005-12-29 Francisco Figueiredo Jr.

2005-12-28 Thread User Fxjr
Log Message: --- 2005-12-29 Francisco Figueiredo Jr. <[EMAIL PROTECTED]> * NpgsqlCommand.cs: [#1000500] Fixed problem when parsing parameter names with NpgsqlCommand.Prepare(), [#1000497] Fixed problem with dot in parameter names. Modified Files: -- Npgsql/src/Npg

[COMMITTERS] pgsql: Remove a space that incorrectly precedes a comma in the PL/pgSQL

2005-12-28 Thread Bruce Momjian
Log Message: --- Remove a space that incorrectly precedes a comma in the PL/pgSQL documentation. Michael Fuhr Modified Files: -- pgsql/doc/src/sgml: plpgsql.sgml (r1.82 -> r1.83) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/plpgsql.sgml.d

[COMMITTERS] pgsql: Remove a space that incorrectly precedes a comma in the PL/pgSQL

2005-12-28 Thread Bruce Momjian
Log Message: --- Remove a space that incorrectly precedes a comma in the PL/pgSQL documentation. Michael Fuhr Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml: plpgsql.sgml (r1.80.2.2 -> r1.80.2.3) (http://developer.postgresql.org/cvsweb.cgi

[COMMITTERS] pgsql: Revert some careless search-and-replace: "ADD" in comment text

2005-12-28 Thread Neil Conway
Log Message: --- Revert some careless search-and-replace: "ADD" in comment text should not be replaced with "ADD_P". Modified Files: -- pgsql/src/backend/parser: gram.y (r2.520 -> r2.521) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/

Re: [COMMITTERS] pgsql: Fix for rearranging encoding id ISO-8859-5

2005-12-28 Thread Tatsuo Ishii
> Neil Conway <[EMAIL PROTECTED]> writes: > > Tatsuo Ishii wrote: > >> Fix for rearranging encoding id ISO-8859-5 to ISO-8859-8. > >> Also make the code more robust by searching for target encoding > >> in the internal charset map. > > > ISTM this patch, or some variant of it, should be applied t

[COMMITTERS] pgsql: Increase amount of shared buffers initdb tries to allocate to

2005-12-28 Thread Andrew Dunstan
Log Message: --- Increase amount of shared buffers initdb tries to allocate to 4000, and add logic to try max_fsm_pages up to 20, plus accompanying minor docs changes. Modified Files: -- pgsql/doc/src/sgml: config.sgml (r1.40 -> r1.41) (http://develo