Fix initdb so it works, but still only for 8.

This commit is contained in:
Bruce Momjian 2000-01-10 23:03:41 +00:00
parent 182162a388
commit a97caacb5e
1 changed files with 2 additions and 2 deletions

View File

@ -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.