mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Improve wording in pg_dump compression docs
A couple minor corrections in pg_dump comments and docs, related to the recently introduced compression API. Reported-by: Justin Pryzby Discussion: https://postgr.es/m/20230227044910.GO1653@telsasoft.com
This commit is contained in:
@ -172,7 +172,7 @@ struct CompressFileHandle
|
||||
extern CompressFileHandle *InitCompressFileHandle(const pg_compress_specification compression_spec);
|
||||
|
||||
/*
|
||||
* Initialize a compress file stream. Deffer the compression algorithm
|
||||
* Initialize a compress file stream. Infer the compression algorithm
|
||||
* from 'path', either by examining its suffix or by appending the supported
|
||||
* suffixes in 'path'.
|
||||
*/
|
||||
|
@ -161,8 +161,8 @@ typedef struct LZ4File
|
||||
} LZ4File;
|
||||
|
||||
/*
|
||||
* LZ4 equivalent to feof() or gzeof(). The end of file is reached if there
|
||||
* is no decompressed output in the overflow buffer and the end of the file
|
||||
* LZ4 equivalent to feof() or gzeof(). Return true iff there is no
|
||||
* decompressed output in the overflow buffer and the end of the backing file
|
||||
* is reached.
|
||||
*/
|
||||
static int
|
||||
|
Reference in New Issue
Block a user