diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-01-10 23:03:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-01-10 23:03:41 +0000 |
commit | a97caacb5e993455996c505323e6eae883e87a32 (patch) | |
tree | e99953a916de420e1a3cc22a95749cb29b7daed8 /src | |
parent | 182162a388ff675eaba31cdf823530206cf06fda (diff) | |
download | postgresql-a97caacb5e993455996c505323e6eae883e87a32.tar.gz postgresql-a97caacb5e993455996c505323e6eae883e87a32.zip |
Fix initdb so it works, but still only for 8.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 9ec12b5d196..af032952ef1 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -101,8 +101,8 @@ * pgsql/src/backend/utils/fmgr/fmgr.c and add additional entries * to the 'case' statement for the additional arguments. */ -#define INDEX_MAX_KEYS 16 -#define FUNC_MAX_ARGS INDEX_MAX_KEYS +#define INDEX_MAX_KEYS 8 +#define FUNC_MAX_ARGS (INDEX_MAX_KEYS+1) /* * Enables debugging print statements in the date/time support routines. |