diff options
| author | Bruce Momjian | 2000-01-10 17:14:46 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2000-01-10 17:14:46 +0000 |
| commit | 8a093d0ae3a139d912ce9f8ba2cde294de79e12e (patch) | |
| tree | 277c311611eb0a49b4e0654c2c253b1114e8236a /src/include/config.h.in | |
| parent | 6456b17bc1c60ec8d8f4ca08ddebaefad519afc7 (diff) | |
Make number of args to a function configurable.
Diffstat (limited to 'src/include/config.h.in')
| -rw-r--r-- | src/include/config.h.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index c5a55a5fb36..c731bea4425 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -93,9 +93,11 @@ #define INDEXSCAN_PATCH /* - * Maximum number of columns in an index. + * Maximum number of columns in an index and maximum number of args + * to a function. They must be the same value. */ #define INDEX_MAX_KEYS 8 +#define FUNC_MAX_ARGS INDEX_MAX_KEYS /* * Enables debugging print statements in the date/time support routines. |
