Avoid C99-ism in pre-v12 branches.
Per buildfarm (I need to figure out why my own compiler did not whine about this).
This commit is contained in:
parent
f451029db8
commit
22b96f883f
@ -187,8 +187,9 @@ CatalogTupleCheckConstraints(Relation heapRel, HeapTuple tup)
|
|||||||
{
|
{
|
||||||
TupleDesc tupdesc = RelationGetDescr(heapRel);
|
TupleDesc tupdesc = RelationGetDescr(heapRel);
|
||||||
bits8 *bp = tup->t_data->t_bits;
|
bits8 *bp = tup->t_data->t_bits;
|
||||||
|
int attnum;
|
||||||
|
|
||||||
for (int attnum = 0; attnum < tupdesc->natts; attnum++)
|
for (attnum = 0; attnum < tupdesc->natts; attnum++)
|
||||||
{
|
{
|
||||||
Form_pg_attribute thisatt = TupleDescAttr(tupdesc, attnum);
|
Form_pg_attribute thisatt = TupleDescAttr(tupdesc, attnum);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user