mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Static assertions cleanup
Because we added StaticAssertStmt() first before StaticAssertDecl(), some uses as well as the instructions in c.h are now a bit backwards from the "native" way static assertions are meant to be used in C. This updates the guidance and moves some static assertions to better places. Specifically, since the addition of StaticAssertDecl(), we can put static assertions at the file level. This moves a number of static assertions out of function bodies, where they might have been stuck out of necessity, to perhaps better places at the file level or in header files. Also, when the static assertion appears in a position where a declaration is allowed, then using StaticAssertDecl() is more native than StaticAssertStmt(). Reviewed-by: John Naylor <john.naylor@enterprisedb.com> Discussion: https://www.postgresql.org/message-id/flat/941a04e7-dd6f-c0e4-8cdf-a33b3338cbda%40enterprisedb.com
This commit is contained in:
@ -57,6 +57,9 @@ typedef struct GinStatsData
|
||||
*/
|
||||
typedef char GinTernaryValue;
|
||||
|
||||
StaticAssertDecl(sizeof(GinTernaryValue) == sizeof(bool),
|
||||
"sizes of GinTernaryValue and bool are not equal");
|
||||
|
||||
#define GIN_FALSE 0 /* item is not present / does not match */
|
||||
#define GIN_TRUE 1 /* item is present / matches */
|
||||
#define GIN_MAYBE 2 /* don't know if item is present / don't know
|
||||
|
@ -426,6 +426,9 @@ do { \
|
||||
(tup)->t_choice.t_heap.t_field3.t_xvac = (xid); \
|
||||
} while (0)
|
||||
|
||||
StaticAssertDecl(MaxOffsetNumber < SpecTokenOffsetNumber,
|
||||
"invalid speculative token constant");
|
||||
|
||||
#define HeapTupleHeaderIsSpeculative(tup) \
|
||||
( \
|
||||
(ItemPointerGetOffsetNumberNoCheck(&(tup)->t_ctid) == SpecTokenOffsetNumber) \
|
||||
|
@ -466,6 +466,13 @@ typedef struct BTVacState
|
||||
#define BT_PIVOT_HEAP_TID_ATTR 0x1000
|
||||
#define BT_IS_POSTING 0x2000
|
||||
|
||||
/*
|
||||
* Mask allocated for number of keys in index tuple must be able to fit
|
||||
* maximum possible number of index attributes
|
||||
*/
|
||||
StaticAssertDecl(BT_OFFSET_MASK >= INDEX_MAX_KEYS,
|
||||
"BT_OFFSET_MASK can't fit INDEX_MAX_KEYS");
|
||||
|
||||
/*
|
||||
* Note: BTreeTupleIsPivot() can have false negatives (but not false
|
||||
* positives) when used with !heapkeyspace indexes
|
||||
|
Reference in New Issue
Block a user