diff options
author | Bruce Momjian | 2002-08-13 20:40:44 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-08-13 20:40:44 +0000 |
commit | 46bb23ac016714065711cf2a780e080c7310d66e (patch) | |
tree | 24c508c5c37af724da039332f60dbf31039993a5 /src/include/postgres_ext.h | |
parent | f8b4a2e0f0a0dd7d1cefd53d8048bfb58f33bd37 (diff) |
Change NAMEDATALEN to 64, INDEX_MAX_KEYS/MAX_FUNC_ARGS to 32, per discussion on hackers.
Diffstat (limited to 'src/include/postgres_ext.h')
-rw-r--r-- | src/include/postgres_ext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/postgres_ext.h b/src/include/postgres_ext.h index 3249ce4350b..d4e5b4ebbfa 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 |