From: Andres Freund Date: Fri, 16 Nov 2018 06:29:50 +0000 (-0800) Subject: Add dummy field to currently empty struct TupleTableSlotOps. X-Git-Tag: REL_12_BETA1~1219 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f92cd7392386147f6a16787c1d5c78d0e9b7cf34;p=postgresql Add dummy field to currently empty struct TupleTableSlotOps. Per MSVC complaint on buildfarm member dory. --- diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index 86e47c56af..7e6b40acb1 100644 --- a/src/include/executor/tuptable.h +++ b/src/include/executor/tuptable.h @@ -162,6 +162,8 @@ typedef struct TupleTableSlot /* routines for a TupleTableSlot implementation */ struct TupleTableSlotOps { + /* body will be replaced in later commit */ + int dummy; }; /*