diff options
Diffstat (limited to 'src/include/access/brin_tuple.h')
-rw-r--r-- | src/include/access/brin_tuple.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/brin_tuple.h b/src/include/access/brin_tuple.h index b042fa8d50b..3f4a7b6d3cd 100644 --- a/src/include/access/brin_tuple.h +++ b/src/include/access/brin_tuple.h @@ -39,9 +39,9 @@ typedef struct BrinMemTuple BlockNumber bt_blkno; /* heap blkno that the tuple is for */ MemoryContext bt_context; /* memcxt holding the bt_columns values */ /* output arrays for brin_deform_tuple: */ - Datum *bt_values; /* values array */ - bool *bt_allnulls; /* allnulls array */ - bool *bt_hasnulls; /* hasnulls array */ + Datum *bt_values; /* values array */ + bool *bt_allnulls; /* allnulls array */ + bool *bt_hasnulls; /* hasnulls array */ /* not an output array, but must be last */ BrinValues bt_columns[FLEXIBLE_ARRAY_MEMBER]; } BrinMemTuple; |