[COMMITTERS] pgsql: Text search doc updates --- first cut at syncing the existing
Log Message: --- Text search doc updates --- first cut at syncing the existing docs with the final syntax decisions. Modified Files: -- pgsql/doc/src/sgml: config.sgml (r1.140 -> r1.141) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/config.sgml?r1=1.140&r2=1.141) textsearch.sgml (r1.1 -> r1.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/textsearch.sgml?r1=1.1&r2=1.2) pgsql/doc/src/sgml/ref: psql-ref.sgml (r1.193 -> r1.194) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/psql-ref.sgml?r1=1.193&r2=1.194) ---(end of broadcast)--- TIP 5: don't forget to increase your free space map settings
[COMMITTERS] pgsql: More cleaning up and removed some duplicates.
Log Message: --- More cleaning up and removed some duplicates. Modified Files: -- pgsql/src/interfaces/ecpg: ChangeLog (r1.352 -> r1.353) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ChangeLog?r1=1.352&r2=1.353) pgsql/src/interfaces/ecpg/pgtypeslib: dt.h (r1.37 -> r1.38) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/pgtypeslib/dt.h?r1=1.37&r2=1.38) dt_common.c (r1.41 -> r1.42) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c?r1=1.41&r2=1.42) interval.c (r1.36 -> r1.37) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/pgtypeslib/interval.c?r1=1.36&r2=1.37) timestamp.c (r1.39 -> r1.40) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/pgtypeslib/timestamp.c?r1=1.39&r2=1.40) pgsql/src/interfaces/ecpg/preproc: Makefile (r1.127 -> r1.128) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/Makefile?r1=1.127&r2=1.128) c_keywords.c (r1.20 -> r1.21) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/c_keywords.c?r1=1.20&r2=1.21) ecpg_keywords.c (r1.35 -> r1.36) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/ecpg_keywords.c?r1=1.35&r2=1.36) extern.h (r1.68 -> r1.69) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/extern.h?r1=1.68&r2=1.69) keywords.c (r1.80 -> r1.81) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/keywords.c?r1=1.80&r2=1.81) pgc.l (r1.153 -> r1.154) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/pgc.l?r1=1.153&r2=1.154) preproc.y (r1.349 -> r1.350) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/preproc.y?r1=1.349&r2=1.350) type.c (r1.73 -> r1.74) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/preproc/type.c?r1=1.73&r2=1.74) ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org
Re: [COMMITTERS] pgsql: Simplify the syntax of CREATE/ALTER TEXT SEARCH DICTIONARY by
the new settings before they get stored; in the original coding you didn't find out about mistakes until the dictionary got invoked. That is source of initdb error with -E KOI8-R --locale ru_RU.KOI8-R options : ERROR: character 0xc3a5 of encoding "UTF8" has no equivalent in "KOI8" Snowball dictionary tries to convert swedish (some languages too, but that was first which I see) stopword file from UTF8 to KOI8 encoding. -- Teodor Sigaev E-mail: [EMAIL PROTECTED] WWW: http://www.sigaev.ru/ ---(end of broadcast)--- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match
[COMMITTERS] pgsql: Suppress testing the options of CREATE TEXT SEARCH DICTIONARY
Log Message: --- Suppress testing the options of CREATE TEXT SEARCH DICTIONARY during initdb. We should create all the standard dictionaries even though some of them may not work in template1's encoding. Per Teodor. Modified Files: -- pgsql/src/backend/commands: tsearchcmds.c (r1.4 -> r1.5) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/tsearchcmds.c?r1=1.4&r2=1.5) ---(end of broadcast)--- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq
[COMMITTERS] pgsql: Fix possible core dump from pgbench -d option.
Log Message: --- Fix possible core dump from pgbench -d option. Julius Stroffek Tags: REL8_2_STABLE Modified Files: -- pgsql/contrib/pgbench: pgbench.c (r1.58.2.1 -> r1.58.2.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pgbench/pgbench.c?r1=1.58.2.1&r2=1.58.2.2) ---(end of broadcast)--- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly
[COMMITTERS] pgsql: Fix possible core dump from pgbench -d option.
Log Message: --- Fix possible core dump from pgbench -d option. Julius Stroffek Modified Files: -- pgsql/contrib/pgbench: pgbench.c (r1.69 -> r1.70) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pgbench/pgbench.c?r1=1.69&r2=1.70) ---(end of broadcast)--- TIP 2: Don't 'kill -9' the postmaster
[COMMITTERS] pgsql: Add book to FAQ_DEV: Transactional Information Systems by
Log Message: --- Add book to FAQ_DEV: Transactional Information Systems by Gerhard Weikum, Kaufmann Modified Files: -- pgsql/doc: FAQ_DEV (r1.139 -> r1.140) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_DEV?r1=1.139&r2=1.140) pgsql/doc/src/FAQ: FAQ_DEV.html (r1.143 -> r1.144) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/FAQ/FAQ_DEV.html?r1=1.143&r2=1.144) ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org
[COMMITTERS] pgsql: Fix typo in FAQ_DEV.
Log Message: --- Fix typo in FAQ_DEV. Modified Files: -- pgsql/doc: FAQ_DEV (r1.140 -> r1.141) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_DEV?r1=1.140&r2=1.141) pgsql/doc/src/FAQ: FAQ_DEV.html (r1.144 -> r1.145) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/FAQ/FAQ_DEV.html?r1=1.144&r2=1.145) ---(end of broadcast)--- TIP 7: You can help support the PostgreSQL project by donating at http://www.postgresql.org/about/donate
[COMMITTERS] pgsql: unbreak ECPG tests for VPATH builds.
Log Message: --- unbreak ECPG tests for VPATH builds. Modified Files: -- pgsql/src/interfaces/ecpg/test/connect: Makefile (r1.6 -> r1.7) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/test/connect/Makefile?r1=1.6&r2=1.7) ---(end of broadcast)--- TIP 7: You can help support the PostgreSQL project by donating at http://www.postgresql.org/about/donate
[COMMITTERS] pgsql: Reduce memory requirements for writing CSVlogs, so it will work
Log Message: --- Reduce memory requirements for writing CSVlogs, so it will work with about the same amount of memory in ErrorContext as standard logs. Modified Files: -- pgsql/src/backend/utils/error: elog.c (r1.194 -> r1.195) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/error/elog.c?r1=1.194&r2=1.195) ---(end of broadcast)--- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match
[COMMITTERS] pgsnmpd - pgsnmpd: MIB chunk for pg_am table
Log Message: --- MIB chunk for pg_am table Added Files: --- pgsnmpd/pgsql_mib_pieces: pg_am.mib (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgsnmpd/pgsnmpd/pgsql_mib_pieces/pg_am.mib?rev=1.1&content-type=text/x-cvsweb-markup) pg_am.tbldef (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgsnmpd/pgsnmpd/pgsql_mib_pieces/pg_am.tbldef?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadcast)--- TIP 4: Have you searched our list archives? http://archives.postgresql.org
