diff options
author | Peter Eisentraut | 2022-04-06 07:09:14 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-04-06 07:10:24 +0000 |
commit | b604a1c204fce2600730cb60aa78e04e949fa588 (patch) | |
tree | 08789d44320f22f5307e27bfa20cb6d0ad399be4 | |
parent | c2bb02bc2e858ba345b8b33f1f3a54628f719d93 (diff) |
Change one AssertMacro to Assert
What surrounds it is no longer a macro (e27f4ee0a701).
-rw-r--r-- | src/include/access/htup_details.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/htup_details.h b/src/include/access/htup_details.h index 3d452d50a1..51a60eda08 100644 --- a/src/include/access/htup_details.h +++ b/src/include/access/htup_details.h @@ -749,7 +749,7 @@ extern MinimalTuple minimal_expand_tuple(HeapTuple sourceTuple, TupleDesc tupleD static inline Datum fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull) { - AssertMacro(attnum > 0); + Assert(attnum > 0); *isnull = false; if (HeapTupleNoNulls(tup)) |