mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent. This formats multiline function declarations "correctly", that is with additional lines of parameter declarations indented to match where the first line's left parenthesis is. Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
This commit is contained in:
		@@ -75,23 +75,23 @@ struct CompressorState
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
static void ParseCompressionOption(int compression, CompressionAlgorithm *alg,
 | 
			
		||||
					   int *level);
 | 
			
		||||
								   int *level);
 | 
			
		||||
 | 
			
		||||
/* Routines that support zlib compressed data I/O */
 | 
			
		||||
#ifdef HAVE_LIBZ
 | 
			
		||||
static void InitCompressorZlib(CompressorState *cs, int level);
 | 
			
		||||
static void DeflateCompressorZlib(ArchiveHandle *AH, CompressorState *cs,
 | 
			
		||||
					  bool flush);
 | 
			
		||||
								  bool flush);
 | 
			
		||||
static void ReadDataFromArchiveZlib(ArchiveHandle *AH, ReadFunc readF);
 | 
			
		||||
static void WriteDataToArchiveZlib(ArchiveHandle *AH, CompressorState *cs,
 | 
			
		||||
					   const char *data, size_t dLen);
 | 
			
		||||
								   const char *data, size_t dLen);
 | 
			
		||||
static void EndCompressorZlib(ArchiveHandle *AH, CompressorState *cs);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
/* Routines that support uncompressed data I/O */
 | 
			
		||||
static void ReadDataFromArchiveNone(ArchiveHandle *AH, ReadFunc readF);
 | 
			
		||||
static void WriteDataToArchiveNone(ArchiveHandle *AH, CompressorState *cs,
 | 
			
		||||
					   const char *data, size_t dLen);
 | 
			
		||||
								   const char *data, size_t dLen);
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Interprets a numeric 'compression' value. The algorithm implied by the
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user