diff options
Diffstat (limited to 'src')
61 files changed, 122 insertions, 122 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index fbaa339b221..fa70ab72fea 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.155 2004/08/04 16:25:02 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.156 2004/08/04 21:33:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -4588,7 +4588,7 @@ ReadCheckpointRecord(XLogRecPtr RecPtr, * instead). We need to initialize the local copies of ThisTimeLineID and * RedoRecPtr. * - * Note: before Postgres 7.5, we went to some effort to keep the postmaster + * Note: before Postgres 8.0, we went to some effort to keep the postmaster * process's copies of ThisTimeLineID and RedoRecPtr valid too. This was * unnecessary however, since the postmaster itself never touches XLOG anyway. */ diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index 2305d10db32..96689c64a3b 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.54 2004/06/21 04:06:05 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.55 2004/08/04 21:33:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -199,7 +199,7 @@ IsToastNamespace(Oid namespaceId) * True iff name starts with the pg_ prefix. * * For some classes of objects, the prefix pg_ is reserved for - * system objects only. As of 7.5, this is only true for + * system objects only. As of 8.0, this is only true for * schema and tablespace names. */ bool diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 43d9aabd046..b2664d40fd7 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.122 2004/06/18 06:13:23 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.123 2004/08/04 21:33:48 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -539,7 +539,7 @@ GetIndexOpClass(List *opclass, Oid attrType, * too for awhile. I'm starting to think we need a better approach. * tgl 2000/10/01 * - * Release 7.5 removes bigbox_ops (which was dead code for a long while + * Release 8.0 removes bigbox_ops (which was dead code for a long while * anyway). tgl 2003/11/11 */ if (list_length(opclass) == 1) diff --git a/src/backend/libpq/be-fsstubs.c b/src/backend/libpq/be-fsstubs.c index 21d1f3ddcfe..c31ef442a94 100644 --- a/src/backend/libpq/be-fsstubs.c +++ b/src/backend/libpq/be-fsstubs.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/be-fsstubs.c,v 1.71 2004/07/28 14:23:28 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/libpq/be-fsstubs.c,v 1.72 2004/08/04 21:33:49 tgl Exp $ * * NOTES * This should be moved to a more appropriate place. It is here @@ -27,7 +27,7 @@ * existing documented semantics of LO FDs: they're only good within a * transaction. * - * As of PostgreSQL 7.5, much of the angst expressed above is no longer + * As of PostgreSQL 8.0, much of the angst expressed above is no longer * relevant, and in fact it'd be pretty easy to allow LO FDs to stay * open across transactions. However backwards compatibility suggests * that we should stick to the status quo. diff --git a/src/backend/nodes/list.c b/src/backend/nodes/list.c index 94c69a54256..c681e6d8c33 100644 --- a/src/backend/nodes/list.c +++ b/src/backend/nodes/list.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/list.c,v 1.59 2004/06/01 06:02:12 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/list.c,v 1.60 2004/08/04 21:33:51 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -251,7 +251,7 @@ lappend_cell_oid(List *list, ListCell *prev, Oid datum) * value, rather than continuing to use the pointer passed as the * second argument. * - * Caution: before Postgres 7.5, the original List was unmodified and + * Caution: before Postgres 8.0, the original List was unmodified and * could be considered to retain its separate identity. This is no longer * the case. */ diff --git a/src/backend/optimizer/path/costsize.c b/src/backend/optimizer/path/costsize.c index 19848e1281f..38e28729aa3 100644 --- a/src/backend/optimizer/path/costsize.c +++ b/src/backend/optimizer/path/costsize.c @@ -49,7 +49,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.131 2004/06/10 21:02:00 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/costsize.c,v 1.132 2004/08/04 21:33:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -238,7 +238,7 @@ cost_nonsequential_access(double relpages) * tuples, but they won't reduce the number of tuples we have to fetch from * the table, so they don't reduce the scan cost. * - * NOTE: as of 7.5, indexQuals is a list of RestrictInfo nodes, where formerly + * NOTE: as of 8.0, indexQuals is a list of RestrictInfo nodes, where formerly * it was a list of bare clause expressions. */ void diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 1c081f03b04..4424890d36f 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.161 2004/06/01 04:47:45 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/indxpath.c,v 1.162 2004/08/04 21:33:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -980,7 +980,7 @@ static const StrategyNumber * operator class. We use the above operator implication table to be able to * derive implications between nonidentical clauses. (Note: "foo" is known * immutable, and constants are surely immutable, but we have to check that - * the operators are too. As of 7.5 it's possible for opclasses to contain + * the operators are too. As of 8.0 it's possible for opclasses to contain * operators that are merely stable, and we dare not make deductions with * these.) * diff --git a/src/backend/optimizer/util/pathnode.c b/src/backend/optimizer/util/pathnode.c index 30900450267..0b6526330af 100644 --- a/src/backend/optimizer/util/pathnode.c +++ b/src/backend/optimizer/util/pathnode.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/util/pathnode.c,v 1.107 2004/06/01 03:03:02 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/util/pathnode.c,v 1.108 2004/08/04 21:33:55 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -286,7 +286,7 @@ add_path(RelOptInfo *parent_rel, Path *new_path) int costcmp; /* - * As of Postgres 7.5, we use fuzzy cost comparison to avoid wasting + * As of Postgres 8.0, we use fuzzy cost comparison to avoid wasting * cycles keeping paths that are really not significantly different * in cost. */ diff --git a/src/backend/po/ru.po b/src/backend/po/ru.po index c3d53745711..8547c309744 100644 --- a/src/backend/po/ru.po +++ b/src/backend/po/ru.po @@ -1,10 +1,10 @@ # ru.po # POSTGRES Translated Messages into the Russian Language (KOI8-R) # -# $Header: /cvsroot/pgsql/src/backend/po/Attic/ru.po,v 1.17 2004/07/02 15:07:10 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/po/Attic/ru.po,v 1.18 2004/08/04 21:33:57 tgl Exp $ # # ChangeLog: -# - March 27 - June 24, 2004: updates for 7.4 - 7.5 branches; <mokhov@cs.concordia.ca> +# - March 27 - June 24, 2004: updates for 7.4 - 8.0 branches; <mokhov@cs.concordia.ca> # - July - August 23, 2003: updates for 7.4.x; <mokhov@cs.concordia.ca> # - January 2, 2003: Fuzzy Fixes, Serguei A. Mokhov <mokhov@cs.concordia.ca> # - October 12, 2002: Post-7.3 beta 2, Fuzzy Fixes, Serguei A. Mokhov <mokhov@cs.concordia.ca> diff --git a/src/backend/po/sv.po b/src/backend/po/sv.po index 9249777418c..03792479900 100644 --- a/src/backend/po/sv.po +++ b/src/backend/po/sv.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-06-25 15:07+0200\n" "PO-Revision-Date: 2004-06-27 11:33+0200\n" diff --git a/src/backend/po/zh_TW.po b/src/backend/po/zh_TW.po index 6be964d6e9a..290fa4bdd53 100644 --- a/src/backend/po/zh_TW.po +++ b/src/backend/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-08-02 19:00-0300\n" "PO-Revision-Date: 2004-08-03 13:42+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/backend/postmaster/bgwriter.c b/src/backend/postmaster/bgwriter.c index 97b3d0bf44a..647b19b4011 100644 --- a/src/backend/postmaster/bgwriter.c +++ b/src/backend/postmaster/bgwriter.c @@ -2,7 +2,7 @@ * * bgwriter.c * - * The background writer (bgwriter) is new in Postgres 7.5. It attempts + * The background writer (bgwriter) is new in Postgres 8.0. It attempts * to keep regular backends from having to write out dirty shared buffers * (which they would only do when needing to free a shared buffer to read in * another page). In the best scenario all writes from shared buffers will @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/bgwriter.c,v 1.5 2004/08/04 16:24:26 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/bgwriter.c,v 1.6 2004/08/04 21:34:00 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c index bef89f38c70..c300d79f216 100644 --- a/src/backend/utils/adt/float.c +++ b/src/backend/utils/adt/float.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.105 2004/05/16 23:18:55 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/float.c,v 1.106 2004/08/04 21:34:02 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -259,10 +259,10 @@ float4in(PG_FUNCTION_ARGS) * Check for an empty-string input to begin with, to avoid * the vagaries of strtod() on different platforms. * - * In releases prior to 7.5, we accepted an empty string as valid - * input (yielding a float4 of 0). In 7.5, we accept empty + * In releases prior to 8.0, we accepted an empty string as valid + * input (yielding a float4 of 0). In 8.0, we accept empty * strings, but emit a warning noting that the feature is - * deprecated. In 7.6+, the warning should be replaced by an + * deprecated. In 8.1+, the warning should be replaced by an * error. */ if (*num == '\0') @@ -424,10 +424,10 @@ float8in(PG_FUNCTION_ARGS) * Check for an empty-string input to begin with, to avoid * the vagaries of strtod() on different platforms. * - * In releases prior to 7.5, we accepted an empty string as valid - * input (yielding a float8 of 0). In 7.5, we accept empty + * In releases prior to 8.0, we accepted an empty string as valid + * input (yielding a float8 of 0). In 8.0, we accept empty * strings, but emit a warning noting that the feature is - * deprecated. In 7.6+, the warning should be replaced by an + * deprecated. In 8.1+, the warning should be replaced by an * error. */ if (*num == '\0') diff --git a/src/backend/utils/adt/oid.c b/src/backend/utils/adt/oid.c index 7ff6c6a27c1..ef9a02d5c54 100644 --- a/src/backend/utils/adt/oid.c +++ b/src/backend/utils/adt/oid.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/oid.c,v 1.56 2004/03/11 02:11:13 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/oid.c,v 1.57 2004/08/04 21:34:02 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -34,10 +34,10 @@ oidin_subr(const char *funcname, const char *s, char **endloc) Oid result; /* - * In releases prior to 7.5, we accepted an empty string as valid - * input (yielding an OID of 0). In 7.5, we accept empty strings, + * In releases prior to 8.0, we accepted an empty string as valid + * input (yielding an OID of 0). In 8.0, we accept empty strings, * but emit a warning noting that the feature is deprecated. In - * 7.6+, the warning should be replaced by an error. + * 8.1+, the warning should be replaced by an error. */ if (*s == '\0') ereport(WARNING, diff --git a/src/backend/utils/adt/selfuncs.c b/src/backend/utils/adt/selfuncs.c index c7ee847a11a..7a21892379d 100644 --- a/src/backend/utils/adt/selfuncs.c +++ b/src/backend/utils/adt/selfuncs.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/selfuncs.c,v 1.161 2004/06/11 01:09:04 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/selfuncs.c,v 1.162 2004/08/04 21:34:02 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -4294,7 +4294,7 @@ btcostestimate(PG_FUNCTION_ARGS) * from pg_statistic, estimate the index correlation as C for a single- * column index, or C * 0.75 for multiple columns. (The idea here is * that multiple columns dilute the importance of the first column's - * ordering, but don't negate it entirely. Before 7.5 we divided the + * ordering, but don't negate it entirely. Before 8.0 we divided the * correlation by the number of columns, but that seems too strong.) */ if (index->indexkeys[0] != 0) diff --git a/src/backend/utils/fmgr/funcapi.c b/src/backend/utils/fmgr/funcapi.c index dac4a8916e1..c2e4e52be9b 100644 --- a/src/backend/utils/fmgr/funcapi.c +++ b/src/backend/utils/fmgr/funcapi.c @@ -7,7 +7,7 @@ * Copyright (c) 2002-2003, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/fmgr/funcapi.c,v 1.14 2004/04/01 21:28:45 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/fmgr/funcapi.c,v 1.15 2004/08/04 21:34:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -106,7 +106,7 @@ per_MultiFuncCall(PG_FUNCTION_ARGS) * at the beginning of each call, the Slot will hold a dangling * pointer to an already-recycled tuple. We clear it out here. * - * Note: use of retval->slot is obsolete as of 7.5, and we expect that + * Note: use of retval->slot is obsolete as of 8.0, and we expect that * it will always be NULL. This is just here for backwards compatibility * in case someone creates a slot anyway. */ diff --git a/src/backend/utils/mmgr/README b/src/backend/utils/mmgr/README index 490b781cc91..8c60ad48844 100644 --- a/src/backend/utils/mmgr/README +++ b/src/backend/utils/mmgr/README @@ -1,4 +1,4 @@ -$PostgreSQL: pgsql/src/backend/utils/mmgr/README,v 1.7 2004/07/01 00:51:29 tgl Exp $ +$PostgreSQL: pgsql/src/backend/utils/mmgr/README,v 1.8 2004/08/04 21:34:04 tgl Exp $ Notes about memory allocation redesign -------------------------------------- @@ -66,7 +66,7 @@ return NULL, and it is not necessary or useful to test for such a result. * palloc(0) is explicitly a valid operation. It does not return a NULL pointer, but a valid chunk of which no bytes may be used. (However, the chunk might later be repalloc'd larger; it can also be pfree'd without -error.) (Note: this behavior is new in Postgres 7.5; earlier versions +error.) (Note: this behavior is new in Postgres 8.0; earlier versions disallowed palloc(0). It seems more consistent to allow it, however.) Similarly, repalloc allows realloc'ing to zero size. diff --git a/src/bin/initdb/po/de.po b/src/bin/initdb/po/de.po index 2fcf22f420a..23a42e223e6 100644 --- a/src/bin/initdb/po/de.po +++ b/src/bin/initdb/po/de.po @@ -3,11 +3,11 @@ # # Use these quotes: »%s« # -# $PostgreSQL: pgsql/src/bin/initdb/po/de.po,v 1.3 2003/12/02 10:24:37 petere Exp $ +# $PostgreSQL: pgsql/src/bin/initdb/po/de.po,v 1.4 2004/08/04 21:34:06 tgl Exp $ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2003-11-25 17:45+0100\n" "PO-Revision-Date: 2003-11-25 18:06+0100\n" "Last-Translator: Peter Eisentraut <peter_e@gmx.net>\n" diff --git a/src/bin/initdb/po/it.po b/src/bin/initdb/po/it.po index 76c5c75d59e..b9acd9bd830 100644 --- a/src/bin/initdb/po/it.po +++ b/src/bin/initdb/po/it.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2003-12-11 01:23-0400\n" "PO-Revision-Date: 2003-12-11 20:32+0100\n" "Last-Translator: Fabrizio Mazzoni <veramente@libero.it>\n" diff --git a/src/bin/initdb/po/pt_BR.po b/src/bin/initdb/po/pt_BR.po index 43983d6ddd1..17f4657f6c3 100644 --- a/src/bin/initdb/po/pt_BR.po +++ b/src/bin/initdb/po/pt_BR.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2003-11-19 03:25-0200\n" "PO-Revision-Date: 2003-11-19 12:10-0200\n" "Last-Translator: Euler Taveira de Oliveira <euler@ufgnet.ufg.br>\n" diff --git a/src/bin/initdb/po/ru.po b/src/bin/initdb/po/ru.po index e88598bb2b4..5e5b12fbe10 100644 --- a/src/bin/initdb/po/ru.po +++ b/src/bin/initdb/po/ru.po @@ -1,14 +1,14 @@ # ru.po # INITDB Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/bin/initdb/po/ru.po,v 1.4 2004/06/10 17:16:17 petere Exp $ +# $PostgreSQL: pgsql/src/bin/initdb/po/ru.po,v 1.5 2004/08/04 21:34:06 tgl Exp $ # # ChangeLog: # - March 27 - May 29, 2004: Initial Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-05-29 07:15-0300\n" "PO-Revision-Date: 2004-05-29 17:08-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/initdb/po/sv.po b/src/bin/initdb/po/sv.po index 5bfa87b7070..d2659364ffb 100644 --- a/src/bin/initdb/po/sv.po +++ b/src/bin/initdb/po/sv.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-06-25 09:38+0200\n" "PO-Revision-Date: 2004-06-25 09:42+0200\n" diff --git a/src/bin/initdb/po/zh_TW.po b/src/bin/initdb/po/zh_TW.po index fe9e1de72ea..1e6f4ccba7d 100644 --- a/src/bin/initdb/po/zh_TW.po +++ b/src/bin/initdb/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-08-01 19:17-0300\n" "PO-Revision-Date: 2004-08-02 08:52+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/bin/pg_controldata/po/ru.po b/src/bin/pg_controldata/po/ru.po index 538ee00359c..145171380c2 100644 --- a/src/bin/pg_controldata/po/ru.po +++ b/src/bin/pg_controldata/po/ru.po @@ -1,17 +1,17 @@ # ru.po # PG_CONTROLDATA Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/bin/pg_controldata/po/ru.po,v 1.7 2004/04/15 08:04:05 petere Exp $ +# $PostgreSQL: pgsql/src/bin/pg_controldata/po/ru.po,v 1.8 2004/08/04 21:34:08 tgl Exp $ # # ChangeLog: -# - March 27, 2004: Update for 7.5.*; <mokhov@cs.concordia.ca> +# - March 27, 2004: Update for 8.0.*; <mokhov@cs.concordia.ca> # - July 24 - August 23, 2003: Update for 7.4.*; <mokhov@cs.concordia.ca> # - September 7, 2002: Complete post 7.3beta1 Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> # - August 31, 2002: Initial Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-03-27 14:11-0400\n" "PO-Revision-Date: 2004-03-27 14:05-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/pg_controldata/po/zh_TW.po b/src/bin/pg_controldata/po/zh_TW.po index eb68751c8a5..5edf24c9bf9 100644 --- a/src/bin/pg_controldata/po/zh_TW.po +++ b/src/bin/pg_controldata/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 19:15-0300\n" "PO-Revision-Date: 2004-08-01 13:21+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/bin/pg_ctl/po/ru.po b/src/bin/pg_ctl/po/ru.po index 5430f5d8a0b..a139c37686d 100644 --- a/src/bin/pg_ctl/po/ru.po +++ b/src/bin/pg_ctl/po/ru.po @@ -1,14 +1,14 @@ # ru.po # PG_CTL Translated Messages into the Russian Language (KOI8-R) # -# $Header: /cvsroot/pgsql/src/bin/pg_ctl/po/ru.po,v 1.1 2004/06/10 02:59:22 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/pg_ctl/po/ru.po,v 1.2 2004/08/04 21:34:09 tgl Exp $ # # ChangeLog: -# - May 29, 2004: Initial translation for 7.5; Serguei A. Mokhov <mokhov@cs.concordia.ca> +# - May 29, 2004: Initial translation for 8.0; Serguei A. Mokhov <mokhov@cs.concordia.ca> # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-05-29 20:53-0400\n" "PO-Revision-Date: 2004-05-29 21:57-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/pg_ctl/po/sv.po b/src/bin/pg_ctl/po/sv.po index 8808cdff137..93e7c28760c 100644 --- a/src/bin/pg_ctl/po/sv.po +++ b/src/bin/pg_ctl/po/sv.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-06-25 10:40+0200\n" "PO-Revision-Date: 2004-06-25 11:46+0200\n" diff --git a/src/bin/pg_ctl/po/zh_TW.po b/src/bin/pg_ctl/po/zh_TW.po index 45ccb38cdec..6fc0f090c8a 100644 --- a/src/bin/pg_ctl/po/zh_TW.po +++ b/src/bin/pg_ctl/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 19:16-0300\n" "PO-Revision-Date: 2004-08-01 13:21+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 7d736a4c434..4c6b9511edb 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -12,7 +12,7 @@ * by PostgreSQL * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.382 2004/08/04 17:13:03 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.383 2004/08/04 21:34:11 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1185,7 +1185,7 @@ dumpDatabase(Archive *AH) selectSourceSchema("pg_catalog"); /* Get the database owner and parameters from pg_database */ - if (g_fout->remoteVersion >= 70500) + if (g_fout->remoteVersion >= 80000) { appendPQExpBuffer(dbQry, "SELECT tableoid, oid, " "(SELECT usename FROM pg_user WHERE usesysid = datdba) as dba, " @@ -1525,7 +1525,7 @@ getNamespaces(int *numNamespaces) * we fetch all namespaces including system ones, so that every object * we read in can be linked to a containing namespace. */ - if (g_fout->remoteVersion >= 70500) + if (g_fout->remoteVersion >= 80000) { appendPQExpBuffer(query, "SELECT tableoid, oid, nspname, " "(select usename from pg_user where nspowner = usesysid) as usename, " @@ -2372,7 +2372,7 @@ getTables(int *numTables) * columns, etc. */ - if (g_fout->remoteVersion >= 70500) + if (g_fout->remoteVersion >= 80000) { /* * Left join to pick up dependency info linking sequences to their @@ -2726,7 +2726,7 @@ getIndexes(TableInfo tblinfo[], int numTables) * one internal dependency. */ resetPQExpBuffer(query); - if (g_fout->remoteVersion >= 70500) + if (g_fout->remoteVersion >= 80000) { appendPQExpBuffer(query, "SELECT t.tableoid, t.oid, " @@ -4522,7 +4522,7 @@ dumpBaseType(Archive *fout, TypeInfo *tinfo) selectSourceSchema(tinfo->dobj.namespace->dobj.name); /* Fetch type-specific details */ - if (fout->remoteVersion >= 70500) + if (fout->remoteVersion >= 80000) { appendPQExpBuffer(query, "SELECT typlen, " "typinput, typoutput, typreceive, typsend, " @@ -5129,7 +5129,7 @@ dumpFunc(Archive *fout, FuncInfo *finfo) selectSourceSchema(finfo->dobj.namespace->dobj.name); /* Fetch function-specific details */ - if (g_fout->remoteVersion >= 70500) + if (g_fout->remoteVersion >= 80000) { appendPQExpBuffer(query, "SELECT proretset, prosrc, probin, " diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 0d9392122c5..d260f2c0b22 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.45 2004/07/19 21:39:48 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.46 2004/08/04 21:34:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -282,7 +282,7 @@ main(int argc, char *argv[]) /* Dump all users excluding the initdb user */ dumpUsers(conn, false); dumpGroups(conn); - if (server_version >= 70500) + if (server_version >= 80000) dumpTablespaces(conn); if (!globals_only) dumpCreateDB(conn); @@ -571,7 +571,7 @@ dumpCreateDB(PGconn *conn) printf("--\n-- Database creation\n--\n\n"); - if (server_version >= 70500) + if (server_version >= 80000) res = executeQuery(conn, "SELECT datname, " "coalesce(usename, (select usename from pg_shadow where usesysid=(select datdba from pg_database where datname='template0'))), " diff --git a/src/bin/pg_dump/po/it.po b/src/bin/pg_dump/po/it.po index 19610369bf1..76ee623ce3b 100644 --- a/src/bin/pg_dump/po/it.po +++ b/src/bin/pg_dump/po/it.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2003-12-11 01:23-0400\n" "PO-Revision-Date: 2003-12-11 19:56+0100\n" "Last-Translator: Fabrizio Mazzoni <veramente@libero.it>\n" diff --git a/src/bin/pg_dump/po/ru.po b/src/bin/pg_dump/po/ru.po index 7b93dc27c5f..2b15a092d37 100644 --- a/src/bin/pg_dump/po/ru.po +++ b/src/bin/pg_dump/po/ru.po @@ -1,10 +1,10 @@ # ru.po # PG_DUMP Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/bin/pg_dump/po/ru.po,v 1.9 2004/05/29 06:26:11 petere Exp $ +# $PostgreSQL: pgsql/src/bin/pg_dump/po/ru.po,v 1.10 2004/08/04 21:34:13 tgl Exp $ # # ChangeLog: -# - April 6 - May 28, 2004: Updates for 7.5.x; <mokhov@cs.concordia.ca> +# - April 6 - May 28, 2004: Updates for 8.0; <mokhov@cs.concordia.ca> # - July 24 - October 5, 2003: Updates for 7.4.x; <mokhov@cs.concordia.ca> # - October 12, 2002: Post-7.3 beta 2, Fixes, Serguei A. Mokhov <mokhov@cs.concordia.ca> # - September 14, 2002: Post-7.3 beta 1, Take II, Serguei A. Mokhov <mokhov@cs.concordia.ca> @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-05-28 01:37-0300\n" "PO-Revision-Date: 2004-05-28 01:42-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/pg_dump/po/sv.po b/src/bin/pg_dump/po/sv.po index cb24d02bded..2aac78043df 100644 --- a/src/bin/pg_dump/po/sv.po +++ b/src/bin/pg_dump/po/sv.po @@ -2,13 +2,13 @@ # Peter Eisentraut <peter_e@gmx.net>, 2001. # Dennis Björklund <db@zigo.dhs.org>, 2002, 2003, 2004. # -# $PostgreSQL: pgsql/src/bin/pg_dump/po/sv.po,v 1.15 2004/06/24 22:17:14 dennis Exp $ +# $PostgreSQL: pgsql/src/bin/pg_dump/po/sv.po,v 1.16 2004/08/04 21:34:13 tgl Exp $ # # Use these quotes: "%s" # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-06-25 00:14+0200\n" "PO-Revision-Date: 2004-06-25 00:16+0200\n" diff --git a/src/bin/pg_dump/po/zh_TW.po b/src/bin/pg_dump/po/zh_TW.po index c525500f49f..fd771fdaccd 100644 --- a/src/bin/pg_dump/po/zh_TW.po +++ b/src/bin/pg_dump/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 19:16-0300\n" "PO-Revision-Date: 2004-08-01 13:22+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/bin/pg_resetxlog/po/ru.po b/src/bin/pg_resetxlog/po/ru.po index 69b6e43ef93..492aca4887d 100644 --- a/src/bin/pg_resetxlog/po/ru.po +++ b/src/bin/pg_resetxlog/po/ru.po @@ -1,10 +1,10 @@ # ru.po # PG_RESETXLOG Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/bin/pg_resetxlog/po/ru.po,v 1.7 2004/04/15 08:04:05 petere Exp $ +# $PostgreSQL: pgsql/src/bin/pg_resetxlog/po/ru.po,v 1.8 2004/08/04 21:34:14 tgl Exp $ # # ChangeLog: -# - April 6, 2004: Updates for 7.5.*; <mokhov@cs.concordia.ca> +# - April 6, 2004: Updates for 8.0; <mokhov@cs.concordia.ca> # - July 24 - August 23, 2003: Updates for 7.4.*; <mokhov@cs.concordia.ca> # - October 12, 2002: Complete post-7.3beta2 Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> # - September 7, 2002: Complete post-7.3beta1 Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-04-06 11:05-0300\n" "PO-Revision-Date: 2004-04-06 12:17-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/pg_resetxlog/po/zh_TW.po b/src/bin/pg_resetxlog/po/zh_TW.po index 9bab7a92b2c..b97ea7e7ff7 100644 --- a/src/bin/pg_resetxlog/po/zh_TW.po +++ b/src/bin/pg_resetxlog/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 19:16-0300\n" "PO-Revision-Date: 2004-08-01 13:22+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/bin/psql/po/it.po b/src/bin/psql/po/it.po index b51922533dd..854187699bb 100644 --- a/src/bin/psql/po/it.po +++ b/src/bin/psql/po/it.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-05-07 13:08-0300\n" "PO-Revision-Date: 2004-05-20 18:34+0100\n" "Last-Translator: frank_lupo <frank_lupo@email.it>\n" diff --git a/src/bin/psql/po/ru.po b/src/bin/psql/po/ru.po index 09481cc6de3..8dba0664702 100644 --- a/src/bin/psql/po/ru.po +++ b/src/bin/psql/po/ru.po @@ -1,10 +1,10 @@ # ru.po # PSQL Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/bin/psql/po/ru.po,v 1.12 2004/05/29 06:26:12 petere Exp $ +# $PostgreSQL: pgsql/src/bin/psql/po/ru.po,v 1.13 2004/08/04 21:34:18 tgl Exp $ # # ChangeLog: -# - March 27 - May 28, 2004: Updates for 7.5.*; <mokhov@cs.concordia.ca> +# - March 27 - May 28, 2004: Updates for 8.0; <mokhov@cs.concordia.ca> # - July 26 - October 12, 2003: Update for 7.4.x; <mokhov@cs.concordia.ca> # - October 12, 2002: Complete post-7.3beta2 Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> # - September 7, 2002: Complete post-7.3beta1 Translation, Serguei A. Mokhov <mokhov@cs.concordia.ca> @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-05-28 01:39-0300\n" "PO-Revision-Date: 2004-05-28 01:31-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/psql/po/zh_TW.po b/src/bin/psql/po/zh_TW.po index 62d3b0b8576..f588d545349 100644 --- a/src/bin/psql/po/zh_TW.po +++ b/src/bin/psql/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 19:16-0300\n" "PO-Revision-Date: 2004-08-01 13:23+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/bin/psql/psqlscan.l b/src/bin/psql/psqlscan.l index d0cad5f0bb6..82893405bdc 100644 --- a/src/bin/psql/psqlscan.l +++ b/src/bin/psql/psqlscan.l @@ -31,7 +31,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.5 2004/07/11 13:29:15 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.6 2004/08/04 21:34:17 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -736,7 +736,7 @@ other . /* * The variable value is just emitted without any * further examination. This is consistent with the - * pre-7.5 code behavior, if not with the way that + * pre-8.0 code behavior, if not with the way that * variables are handled outside backslash commands. */ if (value) @@ -837,7 +837,7 @@ other . * unquoted backslash is end of command or next command, * do not eat * - * (this was not the behavior pre-7.5, but it seems + * (this was not the behavior pre-8.0, but it seems * consistent) */ yyless(0); diff --git a/src/bin/scripts/po/ru.po b/src/bin/scripts/po/ru.po index 2cb0490900d..ac4ae9c31c6 100644 --- a/src/bin/scripts/po/ru.po +++ b/src/bin/scripts/po/ru.po @@ -1,19 +1,19 @@ # ru.po # PGSCRIPTS Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/bin/scripts/po/ru.po,v 1.5 2004/05/29 06:26:14 petere Exp $ +# $PostgreSQL: pgsql/src/bin/scripts/po/ru.po,v 1.6 2004/08/04 21:34:20 tgl Exp $ # # To the new translator: # PG Russian Translation Discussion Group: <http://groups.yahoo.com/group/pgsql-rus/> # PG Glossary: <http://www.sai.msu.su/~megera/oddmuse/index.cgi?Pgsql_Glossary> # # ChangeLog: -# - May 28, 2004: Updates for 7.5.*; <mokhov@cs.concordia.ca> +# - May 28, 2004: Updates for 8.0; <mokhov@cs.concordia.ca> # - July 24 - August 25, 2003: Complete Initial Translation for 7.4.*; Serguei A. Mokhov, <mokhov@cs.concordia.ca> # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-03-27 14:12-0400\n" "PO-Revision-Date: 2003-08-25 12:26-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/bin/scripts/po/sv.po b/src/bin/scripts/po/sv.po index b1a7db788fd..78d1a453fe6 100644 --- a/src/bin/scripts/po/sv.po +++ b/src/bin/scripts/po/sv.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-06-25 09:44+0200\n" "PO-Revision-Date: 2004-06-25 10:12+0200\n" diff --git a/src/bin/scripts/po/zh_TW.po b/src/bin/scripts/po/zh_TW.po index d39073b67fb..64cfa814707 100644 --- a/src/bin/scripts/po/zh_TW.po +++ b/src/bin/scripts/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 19:19-0300\n" "PO-Revision-Date: 2004-08-01 13:22+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/include/catalog/pg_cast.h b/src/include/catalog/pg_cast.h index 069f2e8e60c..97f3f82e046 100644 --- a/src/include/catalog/pg_cast.h +++ b/src/include/catalog/pg_cast.h @@ -4,13 +4,13 @@ * definition of the system "type casts" relation (pg_cast) * along with the relation's initial contents. * - * As of Postgres 7.5, pg_cast describes not only type coercion functions + * As of Postgres 8.0, pg_cast describes not only type coercion functions * but also length coercion functions. * * * Copyright (c) 2002-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/catalog/pg_cast.h,v 1.12 2004/06/16 01:26:49 tgl Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_cast.h,v 1.13 2004/08/04 21:34:23 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index a4be20647f2..80230e34446 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.264 2004/08/02 04:28:29 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.265 2004/08/04 21:34:24 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -277,7 +277,7 @@ typedef struct A_Indices * would be represented with a single A_Indirection node having a 4-element * indirection list. * - * Note: as of Postgres 7.5, we don't support arrays of composite values, + * Note: as of Postgres 8.0, we don't support arrays of composite values, * so cases in which a field select follows a subscript aren't actually * semantically legal. However the parser is prepared to handle such. */ diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index a75ddb8262d..bc171fd9801 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/relation.h,v 1.96 2004/06/05 01:55:05 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/relation.h,v 1.97 2004/08/04 21:34:24 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -355,7 +355,7 @@ typedef struct Path * derived indexscannable conditions in 'indexquals'. * * Both 'indexclauses' and 'indexquals' are lists of sublists of RestrictInfo - * nodes. (Before 7.5, we kept bare operator expressions in these lists, but + * nodes. (Before 8.0, we kept bare operator expressions in these lists, but * storing RestrictInfos is more efficient since selectivities can be cached.) * * 'isjoininner' is TRUE if the path is a nestloop inner scan (that is, diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 1d3c0cb185f..c8739e3ccaf 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -3,8 +3,8 @@ /* * Parts of pg_config.h that you get with autoconf on other systems */ -#define PG_VERSION "7.5" -#define PG_VERSION_STR "7.5devel (win32)" +#define PG_VERSION "8.0" +#define PG_VERSION_STR "8.0devel (win32)" #define DEF_PGPORT 5432 #define DEF_PGPORT_STR "5432" diff --git a/src/include/storage/bufpage.h b/src/include/storage/bufpage.h index 21148c9937b..84f3c670ce0 100644 --- a/src/include/storage/bufpage.h +++ b/src/include/storage/bufpage.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/bufpage.h,v 1.60 2004/07/21 22:31:26 tgl Exp $ + * $PostgreSQL: pgsql/src/include/storage/bufpage.h,v 1.61 2004/08/04 21:34:25 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -134,7 +134,7 @@ typedef PageHeaderData *PageHeader; /* * Page layout version number 0 is for pre-7.3 Postgres releases. * Releases 7.3 and 7.4 use 1, denoting a new HeapTupleHeader layout. - * Release 7.5 changed the HeapTupleHeader layout again. + * Release 8.0 changed the HeapTupleHeader layout again. */ #define PG_PAGE_LAYOUT_VERSION 2 diff --git a/src/interfaces/libpq/po/fr.po b/src/interfaces/libpq/po/fr.po index e04511f82e9..a7069b3bcc6 100644 --- a/src/interfaces/libpq/po/fr.po +++ b/src/interfaces/libpq/po/fr.po @@ -1,6 +1,6 @@ # French message translation file for libpq # -# $PostgreSQL: pgsql/src/interfaces/libpq/po/fr.po,v 1.7 2004/01/13 18:58:41 petere Exp $ +# $PostgreSQL: pgsql/src/interfaces/libpq/po/fr.po,v 1.8 2004/08/04 21:34:26 tgl Exp $ # # Use these quotes: «%s» # Peter Eisentraut <peter_e@gmx.net>, 2001. @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-01-13 01:24-0400\n" "PO-Revision-Date: 2004-01-13 16:26+0100\n" "Last-Translator: Jean-Michel Pouré <jm@poure.com>\n" diff --git a/src/interfaces/libpq/po/ru.po b/src/interfaces/libpq/po/ru.po index 26f58f3c893..068980ff333 100644 --- a/src/interfaces/libpq/po/ru.po +++ b/src/interfaces/libpq/po/ru.po @@ -1,10 +1,10 @@ # ru.po # LIBPQ Translated Messages into the Russian Language (KOI8-R) # -# $PostgreSQL: pgsql/src/interfaces/libpq/po/ru.po,v 1.10 2004/04/05 09:13:43 petere Exp $ +# $PostgreSQL: pgsql/src/interfaces/libpq/po/ru.po,v 1.11 2004/08/04 21:34:26 tgl Exp $ # # ChangeLog: -# - March 27, 2004: Update for 7.5.*; <mokhov@cs.concordia.ca> +# - March 27, 2004: Update for 8.0; <mokhov@cs.concordia.ca> # - July 24 - October 5, 2003: Update for 7.4.*; <mokhov@cs.concordia.ca> # - Januray 2, 2002: Completed SSL transaltion, Serguei A. Mokhov <mokhov@cs.concordia.ca> # - October 12, 2002: Post-7.3beta2 fuzzy translation fixes, Serguei A. Mokhov <mokhov@cs.concordia.ca> @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5.x\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-03-27 14:12-0400\n" "PO-Revision-Date: 2003-10-05 11:35-0500\n" "Last-Translator: Serguei A. Mokhov <mokhov@cs.concordia.ca>\n" diff --git a/src/interfaces/libpq/po/zh_TW.po b/src/interfaces/libpq/po/zh_TW.po index 95797ae002e..02331e79926 100644 --- a/src/interfaces/libpq/po/zh_TW.po +++ b/src/interfaces/libpq/po/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: PostgreSQL 7.5\n" +"Project-Id-Version: PostgreSQL 8.0\n" "POT-Creation-Date: 2004-07-29 01:12-0300\n" "PO-Revision-Date: 2004-08-01 13:21+0800\n" "Last-Translator: Zhenbang Wei <forth@zbwei.net>\n" diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 4d8a0aa87ad..76ea03107b9 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -29,7 +29,7 @@ * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.51 2004/07/31 20:55:45 tgl Exp $ + * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.52 2004/08/04 21:34:29 tgl Exp $ * ********************************************************************* */ @@ -272,7 +272,7 @@ static PLyProcedure *PLy_last_procedure = NULL; * interpreter returns to the calling function, we re-throw the error (even if * Python thinks it trapped the error and doesn't return NULL). Eventually * this ought to be improved to let Python code really truly trap the error, - * but that's more of a change from the pre-7.5 semantics than I have time for + * but that's more of a change from the pre-8.0 semantics than I have time for * now --- it will only be possible if the callback query is executed inside a * subtransaction. */ diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c index 134291be4e9..2a8e6c84585 100644 --- a/src/pl/tcl/pltcl.c +++ b/src/pl/tcl/pltcl.c @@ -31,7 +31,7 @@ * ENHANCEMENTS, OR MODIFICATIONS. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.88 2004/07/31 20:55:45 tgl Exp $ + * $PostgreSQL: pgsql/src/pl/tcl/pltcl.c,v 1.89 2004/08/04 21:34:32 tgl Exp $ * **********************************************************************/ @@ -146,7 +146,7 @@ static FunctionCallInfo pltcl_current_fcinfo = NULL; * returns to the calling function, we re-throw the error (even if Tcl * thinks it trapped the error and doesn't return TCL_ERROR). Eventually * this ought to be improved to let Tcl code really truly trap the error, - * but that's more of a change from the pre-7.5 semantics than I have time + * but that's more of a change from the pre-8.0 semantics than I have time * for now --- it will only be possible if the callback query is executed * inside a subtransaction. */ diff --git a/src/test/regress/expected/foreign_key.out b/src/test/regress/expected/foreign_key.out index 3c9a7d6668d..b291000add1 100644 --- a/src/test/regress/expected/foreign_key.out +++ b/src/test/regress/expected/foreign_key.out @@ -1103,7 +1103,7 @@ FOREIGN KEY (x1) REFERENCES pktable(id3); -- text is compatible with varchar ALTER TABLE fktable ADD CONSTRAINT fk_4_2 FOREIGN KEY (x4) REFERENCES pktable(id2); --- int2 is part of int4 opclass as of 7.5 +-- int2 is part of int4 opclass as of 8.0 ALTER TABLE fktable ADD CONSTRAINT fk_5_1 FOREIGN KEY (x5) REFERENCES pktable(id1); -- check multikey cases, especially out-of-order column lists diff --git a/src/test/regress/expected/opr_sanity.out b/src/test/regress/expected/opr_sanity.out index f6cebd9a57a..937f179439e 100644 --- a/src/test/regress/expected/opr_sanity.out +++ b/src/test/regress/expected/opr_sanity.out @@ -792,7 +792,7 @@ WHERE p1.amopopr = p2.oid AND (0 rows) -- Check that operator input types match the opclass --- For 7.5, we require that oprleft match opcintype (possibly by coercion). +-- For 8.0, we require that oprleft match opcintype (possibly by coercion). -- When amopsubtype is zero (default), oprright must equal oprleft; -- when amopsubtype is not zero, oprright must equal amopsubtype. SELECT p1.amopclaid, p1.amopopr, p2.oid, p2.oprname, p3.opcname diff --git a/src/test/regress/expected/type_sanity.out b/src/test/regress/expected/type_sanity.out index 71db213beae..58b8dc6dd13 100644 --- a/src/test/regress/expected/type_sanity.out +++ b/src/test/regress/expected/type_sanity.out @@ -56,7 +56,7 @@ WHERE (p1.typtype = 'c' AND p1.typrelid = 0) OR (0 rows) -- Look for basic types that don't have an array type. --- NOTE: as of 7.5, this check finds smgr and unknown. +-- NOTE: as of 8.0, this check finds smgr and unknown. SELECT p1.oid, p1.typname FROM pg_type as p1 WHERE p1.typtype in ('b') AND p1.typname NOT LIKE '\\_%' AND NOT EXISTS @@ -92,7 +92,7 @@ WHERE p1.typinput = p2.oid AND p1.typtype in ('b', 'p') AND NOT -----+---------+-----+--------- (0 rows) --- As of 7.5, this check finds refcursor, which is borrowing +-- As of 8.0, this check finds refcursor, which is borrowing -- other types' I/O routines SELECT p1.oid, p1.typname, p2.oid, p2.proname FROM pg_type AS p1, pg_proc AS p2 @@ -116,7 +116,7 @@ WHERE p1.typinput = p2.oid AND p1.typtype in ('b', 'p') AND (0 rows) -- Check for bogus typoutput routines --- As of 7.5, this check finds refcursor, which is borrowing +-- As of 8.0, this check finds refcursor, which is borrowing -- other types' I/O routines SELECT p1.oid, p1.typname, p2.oid, p2.proname FROM pg_type AS p1, pg_proc AS p2 diff --git a/src/test/regress/expected/without_oid.out b/src/test/regress/expected/without_oid.out index 708c4c5e94d..fbe617f9495 100644 --- a/src/test/regress/expected/without_oid.out +++ b/src/test/regress/expected/without_oid.out @@ -5,7 +5,7 @@ -- This test tries to verify that WITHOUT OIDS actually saves space. -- On machines where MAXALIGN is 8, WITHOUT OIDS may or may not save any -- space, depending on the size of the tuple header + null bitmap. --- As of 7.5 we need a 9-bit null bitmap to force the difference to appear. +-- As of 8.0 we need a 9-bit null bitmap to force the difference to appear. -- CREATE TABLE wi (i INT, n1 int, n2 int, n3 int, n4 int, diff --git a/src/test/regress/sql/foreign_key.sql b/src/test/regress/sql/foreign_key.sql index ad1274c7f84..ad5865683fb 100644 --- a/src/test/regress/sql/foreign_key.sql +++ b/src/test/regress/sql/foreign_key.sql @@ -750,7 +750,7 @@ FOREIGN KEY (x1) REFERENCES pktable(id3); ALTER TABLE fktable ADD CONSTRAINT fk_4_2 FOREIGN KEY (x4) REFERENCES pktable(id2); --- int2 is part of int4 opclass as of 7.5 +-- int2 is part of int4 opclass as of 8.0 ALTER TABLE fktable ADD CONSTRAINT fk_5_1 FOREIGN KEY (x5) REFERENCES pktable(id1); diff --git a/src/test/regress/sql/opr_sanity.sql b/src/test/regress/sql/opr_sanity.sql index 78ea8dc0cbf..567eb89e6be 100644 --- a/src/test/regress/sql/opr_sanity.sql +++ b/src/test/regress/sql/opr_sanity.sql @@ -642,7 +642,7 @@ WHERE p1.amopopr = p2.oid AND (p2.oprrest = 0 OR p2.oprjoin = 0); -- Check that operator input types match the opclass --- For 7.5, we require that oprleft match opcintype (possibly by coercion). +-- For 8.0, we require that oprleft match opcintype (possibly by coercion). -- When amopsubtype is zero (default), oprright must equal oprleft; -- when amopsubtype is not zero, oprright must equal amopsubtype. diff --git a/src/test/regress/sql/type_sanity.sql b/src/test/regress/sql/type_sanity.sql index 0c3751ef908..3e421127d15 100644 --- a/src/test/regress/sql/type_sanity.sql +++ b/src/test/regress/sql/type_sanity.sql @@ -50,7 +50,7 @@ WHERE (p1.typtype = 'c' AND p1.typrelid = 0) OR (p1.typtype != 'c' AND p1.typrelid != 0); -- Look for basic types that don't have an array type. --- NOTE: as of 7.5, this check finds smgr and unknown. +-- NOTE: as of 8.0, this check finds smgr and unknown. SELECT p1.oid, p1.typname FROM pg_type as p1 @@ -78,7 +78,7 @@ WHERE p1.typinput = p2.oid AND p1.typtype in ('b', 'p') AND NOT p2.proargtypes[1] = 'oid'::regtype AND p2.proargtypes[2] = 'int4'::regtype)); --- As of 7.5, this check finds refcursor, which is borrowing +-- As of 8.0, this check finds refcursor, which is borrowing -- other types' I/O routines SELECT p1.oid, p1.typname, p2.oid, p2.proname FROM pg_type AS p1, pg_proc AS p2 @@ -96,7 +96,7 @@ WHERE p1.typinput = p2.oid AND p1.typtype in ('b', 'p') AND -- Check for bogus typoutput routines --- As of 7.5, this check finds refcursor, which is borrowing +-- As of 8.0, this check finds refcursor, which is borrowing -- other types' I/O routines SELECT p1.oid, p1.typname, p2.oid, p2.proname FROM pg_type AS p1, pg_proc AS p2 diff --git a/src/test/regress/sql/without_oid.sql b/src/test/regress/sql/without_oid.sql index 2c176c8e3e2..06c9c69245b 100644 --- a/src/test/regress/sql/without_oid.sql +++ b/src/test/regress/sql/without_oid.sql @@ -6,7 +6,7 @@ -- This test tries to verify that WITHOUT OIDS actually saves space. -- On machines where MAXALIGN is 8, WITHOUT OIDS may or may not save any -- space, depending on the size of the tuple header + null bitmap. --- As of 7.5 we need a 9-bit null bitmap to force the difference to appear. +-- As of 8.0 we need a 9-bit null bitmap to force the difference to appear. -- CREATE TABLE wi (i INT, n1 int, n2 int, n3 int, n4 int, |