diff options
| author | Bruce Momjian <bruce@momjian.us> | 2002-08-13 20:40:44 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2002-08-13 20:40:44 +0000 |
| commit | 46bb23ac016714065711cf2a780e080c7310d66e (patch) | |
| tree | 24c508c5c37af724da039332f60dbf31039993a5 /src/include | |
| parent | f8b4a2e0f0a0dd7d1cefd53d8048bfb58f33bd37 (diff) | |
| download | postgresql-46bb23ac016714065711cf2a780e080c7310d66e.tar.gz | |
Change NAMEDATALEN to 64, INDEX_MAX_KEYS/MAX_FUNC_ARGS to 32, per discussion on hackers.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catversion.h | 4 | ||||
| -rw-r--r-- | src/include/pg_config.h.in | 4 | ||||
| -rw-r--r-- | src/include/postgres_ext.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 792b2858f1..8f06566e77 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: catversion.h,v 1.147 2002/08/09 16:45:14 tgl Exp $ + * $Id: catversion.h,v 1.148 2002/08/13 20:40:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200208091 +#define CATALOG_VERSION_NO 200208131 #endif diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 01d5465ad8..ea91f79e32 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -8,7 +8,7 @@ * or in pg_config.h afterwards. Of course, if you edit pg_config.h, then your * changes will be overwritten the next time you run configure. * - * $Id: pg_config.h.in,v 1.26 2002/07/31 17:19:54 tgl Exp $ + * $Id: pg_config.h.in,v 1.27 2002/08/13 20:40:44 momjian Exp $ */ #ifndef PG_CONFIG_H @@ -162,7 +162,7 @@ * switch statement in fmgr_oldstyle() in src/backend/utils/fmgr/fmgr.c. * But consider converting such functions to new-style instead... */ -#define INDEX_MAX_KEYS 16 +#define INDEX_MAX_KEYS 32 #define FUNC_MAX_ARGS INDEX_MAX_KEYS /* diff --git a/src/include/postgres_ext.h b/src/include/postgres_ext.h index 3249ce4350..d4e5b4ebbf 100644 --- a/src/include/postgres_ext.h +++ b/src/include/postgres_ext.h @@ -15,7 +15,7 @@ * use header files that are otherwise internal to Postgres to interface * with the backend. * - * $Id: postgres_ext.h,v 1.10 2002/04/30 19:53:03 tgl Exp $ + * $Id: postgres_ext.h,v 1.11 2002/08/13 20:40:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -41,6 +41,6 @@ typedef unsigned int Oid; * * NOTE that databases with different NAMEDATALEN's cannot interoperate! */ -#define NAMEDATALEN 32 +#define NAMEDATALEN 64 #endif |
