mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Simplify our Assert infrastructure a little.
Remove the Trap and TrapMacro macros, which were nearly unused and confusingly had the opposite condition polarity from the otherwise-functionally-equivalent Assert macros. Having done that, it's very hard to justify carrying the errorType argument of ExceptionalCondition, so drop that too, and just let it assume everything's an Assert. This saves about 64K of code space as of current HEAD. Discussion: https://postgr.es/m/3928703.1665345117@sss.pgh.pa.us
This commit is contained in:
@ -1319,7 +1319,7 @@ check_tuple_attribute(HeapCheckContext *ctx)
|
||||
*/
|
||||
|
||||
/*
|
||||
* Check that VARTAG_SIZE won't hit a TrapMacro on a corrupt va_tag before
|
||||
* Check that VARTAG_SIZE won't hit an Assert on a corrupt va_tag before
|
||||
* risking a call into att_addlength_pointer
|
||||
*/
|
||||
if (VARATT_IS_EXTERNAL(tp + ctx->offset))
|
||||
|
Reference in New Issue
Block a user