Skip to content

Commit b604a1c

Browse files
committed
Change one AssertMacro to Assert
What surrounds it is no longer a macro (e27f4ee).
1 parent c2bb02b commit b604a1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/access/htup_details.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ extern MinimalTuple minimal_expand_tuple(HeapTuple sourceTuple, TupleDesc tupleD
749749
static inline Datum
750750
fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
751751
{
752-
AssertMacro(attnum > 0);
752+
Assert(attnum > 0);
753753

754754
*isnull = false;
755755
if (HeapTupleNoNulls(tup))

0 commit comments

Comments
 (0)