aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2018-11-15 22:29:50 -0800
committerAndres Freund <andres@anarazel.de>2018-11-15 22:29:50 -0800
commitf92cd7392386147f6a16787c1d5c78d0e9b7cf34 (patch)
tree3886f1d9a51a6ddec12a49e9904ab84f21e42283
parent7ef04e4d2cb287e4e28b87f24b4b36ef4e07530b (diff)
downloadpostgresql-f92cd7392386147f6a16787c1d5c78d0e9b7cf34.tar.gz
postgresql-f92cd7392386147f6a16787c1d5c78d0e9b7cf34.zip
Add dummy field to currently empty struct TupleTableSlotOps.
Per MSVC complaint on buildfarm member dory.
-rw-r--r--src/include/executor/tuptable.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h
index 86e47c56af2..7e6b40acb1e 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;
};
/*