diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-04-23 23:46:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-04-23 23:46:37 +0000 |
commit | 42f2e5bd11416001e724885d05676457854609df (patch) | |
tree | db565cd2bf5c0c6f6e55ff82814527fadc25afe9 | |
parent | 695a0425327e1b4096720b462db9119e3696622e (diff) | |
download | postgresql-42f2e5bd11416001e724885d05676457854609df.tar.gz postgresql-42f2e5bd11416001e724885d05676457854609df.zip |
Based on this report, I am adding a FUNC_MAX_ARGS define to
src/include/pg_config.h.win32. Certainly if we have INDEX_MAX_KEYS in
there, we should have FUNC_MAX_ARGS too.
Report from Chris Ryan
-rw-r--r-- | src/include/pg_config.h.win32 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index eb833f3f90e..0681c717cb5 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -19,6 +19,7 @@ #define BLCKSZ 8192 #define INDEX_MAX_KEYS 16 +#define FUNC_MAX_ARGS INDEX_MAX_KEYS #define HAVE_ATEXIT #define HAVE_MEMMOVE |