diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/pg_cast.h | 4 | ||||
-rw-r--r-- | src/include/nodes/parsenodes.h | 4 | ||||
-rw-r--r-- | src/include/nodes/relation.h | 4 | ||||
-rw-r--r-- | src/include/pg_config.h.win32 | 4 | ||||
-rw-r--r-- | src/include/storage/bufpage.h | 4 |
5 files changed, 10 insertions, 10 deletions
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 |