mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Doc: Update struct Trigger definition.
Commit 487e9861d added a new field to struct Trigger, but failed to
update the documentation to match; backpatch to v13 where that came in.
Reviewed by Richard Guo.
Discussion: https://postgr.es/m/CAPmGK17NY92CyxJ%2BBG7A3JZurmng4jfRfzPiBTtNupGMF0xW1g%40mail.gmail.com
			
			
This commit is contained in:
		@@ -721,6 +721,7 @@ typedef struct Trigger
 | 
				
			|||||||
    int16       tgtype;
 | 
					    int16       tgtype;
 | 
				
			||||||
    char        tgenabled;
 | 
					    char        tgenabled;
 | 
				
			||||||
    bool        tgisinternal;
 | 
					    bool        tgisinternal;
 | 
				
			||||||
 | 
					    bool        tgisclone;
 | 
				
			||||||
    Oid         tgconstrrelid;
 | 
					    Oid         tgconstrrelid;
 | 
				
			||||||
    Oid         tgconstrindid;
 | 
					    Oid         tgconstrindid;
 | 
				
			||||||
    Oid         tgconstraint;
 | 
					    Oid         tgconstraint;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user