mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	pgindent run for 9.5
This commit is contained in:
		@@ -37,8 +37,8 @@ typedef enum CollectedCommandType
 | 
			
		||||
 */
 | 
			
		||||
typedef struct CollectedATSubcmd
 | 
			
		||||
{
 | 
			
		||||
	ObjectAddress	address; /* affected column, constraint, index, ... */
 | 
			
		||||
	Node		   *parsetree;
 | 
			
		||||
	ObjectAddress address;		/* affected column, constraint, index, ... */
 | 
			
		||||
	Node	   *parsetree;
 | 
			
		||||
} CollectedATSubcmd;
 | 
			
		||||
 | 
			
		||||
typedef struct CollectedCommand
 | 
			
		||||
@@ -54,52 +54,52 @@ typedef struct CollectedCommand
 | 
			
		||||
		{
 | 
			
		||||
			ObjectAddress address;
 | 
			
		||||
			ObjectAddress secondaryObject;
 | 
			
		||||
		} simple;
 | 
			
		||||
		}			simple;
 | 
			
		||||
 | 
			
		||||
		/* ALTER TABLE, and internal uses thereof */
 | 
			
		||||
		struct
 | 
			
		||||
		{
 | 
			
		||||
			Oid		objectId;
 | 
			
		||||
			Oid		classId;
 | 
			
		||||
			List   *subcmds;
 | 
			
		||||
		} alterTable;
 | 
			
		||||
			Oid			objectId;
 | 
			
		||||
			Oid			classId;
 | 
			
		||||
			List	   *subcmds;
 | 
			
		||||
		}			alterTable;
 | 
			
		||||
 | 
			
		||||
		/* GRANT / REVOKE */
 | 
			
		||||
		struct
 | 
			
		||||
		{
 | 
			
		||||
			InternalGrant *istmt;
 | 
			
		||||
		} grant;
 | 
			
		||||
		}			grant;
 | 
			
		||||
 | 
			
		||||
		/* ALTER OPERATOR FAMILY */
 | 
			
		||||
		struct
 | 
			
		||||
		{
 | 
			
		||||
			ObjectAddress address;
 | 
			
		||||
			List   *operators;
 | 
			
		||||
			List   *procedures;
 | 
			
		||||
		} opfam;
 | 
			
		||||
			List	   *operators;
 | 
			
		||||
			List	   *procedures;
 | 
			
		||||
		}			opfam;
 | 
			
		||||
 | 
			
		||||
		/* CREATE OPERATOR CLASS */
 | 
			
		||||
		struct
 | 
			
		||||
		{
 | 
			
		||||
			ObjectAddress address;
 | 
			
		||||
			List   *operators;
 | 
			
		||||
			List   *procedures;
 | 
			
		||||
		} createopc;
 | 
			
		||||
			List	   *operators;
 | 
			
		||||
			List	   *procedures;
 | 
			
		||||
		}			createopc;
 | 
			
		||||
 | 
			
		||||
		/* ALTER TEXT SEARCH CONFIGURATION ADD/ALTER/DROP MAPPING */
 | 
			
		||||
		struct
 | 
			
		||||
		{
 | 
			
		||||
			ObjectAddress address;
 | 
			
		||||
			Oid	   *dictIds;
 | 
			
		||||
			int		ndicts;
 | 
			
		||||
		} atscfg;
 | 
			
		||||
			Oid		   *dictIds;
 | 
			
		||||
			int			ndicts;
 | 
			
		||||
		}			atscfg;
 | 
			
		||||
 | 
			
		||||
		/* ALTER DEFAULT PRIVILEGES */
 | 
			
		||||
		struct
 | 
			
		||||
		{
 | 
			
		||||
			GrantObjectType objtype;
 | 
			
		||||
		} defprivs;
 | 
			
		||||
	} d;
 | 
			
		||||
		}			defprivs;
 | 
			
		||||
	}			d;
 | 
			
		||||
} CollectedCommand;
 | 
			
		||||
 | 
			
		||||
#endif	/* DEPARSE_UTILITY_H */
 | 
			
		||||
#endif   /* DEPARSE_UTILITY_H */
 | 
			
		||||
 
 | 
			
		||||
@@ -15,7 +15,7 @@
 | 
			
		||||
 | 
			
		||||
#include "lib/stringinfo.h"
 | 
			
		||||
 | 
			
		||||
extern int GetOldFunctionMessage(StringInfo buf);
 | 
			
		||||
extern int	GetOldFunctionMessage(StringInfo buf);
 | 
			
		||||
extern int	HandleFunctionRequest(StringInfo msgBuf);
 | 
			
		||||
 | 
			
		||||
#endif   /* FASTPATH_H */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user