Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1e1634 commit b9d832fCopy full SHA for b9d832f
src/include/config.h.in
@@ -96,13 +96,15 @@
96
* Maximum number of columns in an index and maximum number of arguments
97
* to a function. They must be the same value.
98
*
99
+ * The minimum value is 9 (btree index creation has a 9-argument function).
100
+ *
101
* There is no maximum value, though if you want to pass more than 32
102
* arguments to a function, you will have to modify
103
* pgsql/src/backend/utils/fmgr/fmgr.c and add additional entries
104
* to the 'case' statement for the additional arguments.
105
*/
106
#define INDEX_MAX_KEYS 16
-#define FUNC_MAX_ARGS (INDEX_MAX_KEYS+1)
107
+#define FUNC_MAX_ARGS INDEX_MAX_KEYS
108
109
/*
110
* Enables debugging print statements in the date/time support routines.
0 commit comments