mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Silence compiler warning in Assert()
gcc 6.3 does not whine about this mistake I made in 39808e8868 but
evidently lots of other compilers do, according to Michael Paquier,
Peter Eisentraut, Arthur Zakirov, Tomas Vondra.
Discussion: too many to list
			
			
This commit is contained in:
		@@ -1761,7 +1761,7 @@ EventTriggerCollectAlterTableSubcmd(Node *subcmd, ObjectAddress address)
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	Assert(IsA(subcmd, AlterTableCmd));
 | 
			
		||||
	Assert(OidIsValid(currentEventTriggerState->currentCommand));
 | 
			
		||||
	Assert(currentEventTriggerState->currentCommand != NULL);
 | 
			
		||||
	Assert(OidIsValid(currentEventTriggerState->currentCommand->d.alterTable.objectId));
 | 
			
		||||
 | 
			
		||||
	oldcxt = MemoryContextSwitchTo(currentEventTriggerState->cxt);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user