mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
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:
@ -187,8 +187,9 @@ CatalogTupleCheckConstraints(Relation heapRel, HeapTuple tup)
|
||||
{
|
||||
TupleDesc tupdesc = RelationGetDescr(heapRel);
|
||||
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);
|
||||
|
||||
|
Reference in New Issue
Block a user