mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Initial pgindent and pgperltidy run for v14.
Also "make reformat-dat-files". The only change worthy of note is that pgindent messed up the formatting of launcher.c's struct LogicalRepWorkerId, which led me to notice that that struct wasn't used at all anymore, so I just took it out.
This commit is contained in:
		@@ -67,12 +67,6 @@ typedef struct LogicalRepCtxStruct
 | 
			
		||||
 | 
			
		||||
LogicalRepCtxStruct *LogicalRepCtx;
 | 
			
		||||
 | 
			
		||||
typedef struct LogicalRepWorkerId
 | 
			
		||||
{
 | 
			
		||||
	Oid			subid;
 | 
			
		||||
	Oid			relid;
 | 
			
		||||
} LogicalRepWorkerId;
 | 
			
		||||
 | 
			
		||||
static void ApplyLauncherWakeup(void);
 | 
			
		||||
static void logicalrep_launcher_onexit(int code, Datum arg);
 | 
			
		||||
static void logicalrep_worker_onexit(int code, Datum arg);
 | 
			
		||||
@@ -283,7 +277,7 @@ logicalrep_worker_launch(Oid dbid, Oid subid, const char *subname, Oid userid,
 | 
			
		||||
 | 
			
		||||
	ereport(DEBUG1,
 | 
			
		||||
			(errmsg_internal("starting logical replication worker for subscription \"%s\"",
 | 
			
		||||
					subname)));
 | 
			
		||||
							 subname)));
 | 
			
		||||
 | 
			
		||||
	/* Report this after the initial starting message for consistency. */
 | 
			
		||||
	if (max_replication_slots == 0)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user