Commit a97caacb authored by Bruce Momjian's avatar Bruce Momjian

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

parent 182162a3
...@@ -101,8 +101,8 @@ ...@@ -101,8 +101,8 @@
* pgsql/src/backend/utils/fmgr/fmgr.c and add additional entries * pgsql/src/backend/utils/fmgr/fmgr.c and add additional entries
* to the 'case' statement for the additional arguments. * to the 'case' statement for the additional arguments.
*/ */
#define INDEX_MAX_KEYS 16 #define INDEX_MAX_KEYS 8
#define FUNC_MAX_ARGS INDEX_MAX_KEYS #define FUNC_MAX_ARGS (INDEX_MAX_KEYS+1)
/* /*
* Enables debugging print statements in the date/time support routines. * Enables debugging print statements in the date/time support routines.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment