diff options
Diffstat (limited to 'src/include/catalog/genbki.h')
-rw-r--r-- | src/include/catalog/genbki.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/catalog/genbki.h b/src/include/catalog/genbki.h index 9fb0d2c83d3..4ecd76f4be7 100644 --- a/src/include/catalog/genbki.h +++ b/src/include/catalog/genbki.h @@ -55,9 +55,13 @@ * need stable OIDs for shared relations, and that includes toast tables * of shared relations. * - * The macro definition is just to keep the C compiler from spitting up. + * The DECLARE_TOAST_WITH_MACRO variant is used when C macros are needed + * for the toast table/index OIDs (usually only for shared catalogs). + * + * The macro definitions are just to keep the C compiler from spitting up. */ #define DECLARE_TOAST(name,toastoid,indexoid) extern int no_such_variable +#define DECLARE_TOAST_WITH_MACRO(name,toastoid,indexoid,toastoidmacro,indexoidmacro) extern int no_such_variable /* * These lines are processed by genbki.pl to create the statements |