mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +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:
		@@ -186,8 +186,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);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user