diff options
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/pg_dump/compress_lz4.c | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_dump_sort.c | 2 | ||||
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 2 | ||||
-rw-r--r-- | src/bin/scripts/t/100_vacuumdb.pl | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_dump/compress_lz4.c b/src/bin/pg_dump/compress_lz4.c index 5aca9c1f061..423e1b7976f 100644 --- a/src/bin/pg_dump/compress_lz4.c +++ b/src/bin/pg_dump/compress_lz4.c @@ -342,7 +342,7 @@ LZ4Stream_get_error(CompressFileHandle *CFH) /* * Initialize an already alloc'ed LZ4State struct for subsequent calls. * - * Creates the necessary contexts for either compresion or decompression. When + * Creates the necessary contexts for either compression or decompression. When * compressing data (indicated by compressing=true), it additionally writes the * LZ4 header in the output stream. * diff --git a/src/bin/pg_dump/pg_dump_sort.c b/src/bin/pg_dump/pg_dump_sort.c index 8266c117a3e..745578d8550 100644 --- a/src/bin/pg_dump/pg_dump_sort.c +++ b/src/bin/pg_dump/pg_dump_sort.c @@ -137,7 +137,7 @@ static const int dbObjectTypePriority[] = PRIO_DEFAULT_ACL, /* DO_DEFAULT_ACL */ PRIO_TRANSFORM, /* DO_TRANSFORM */ PRIO_LARGE_OBJECT, /* DO_LARGE_OBJECT */ - PRIO_LARGE_OBJECT_DATA, /* DO_LARGE_OJECT_DATA */ + PRIO_LARGE_OBJECT_DATA, /* DO_LARGE_OBJECT_DATA */ PRIO_PRE_DATA_BOUNDARY, /* DO_PRE_DATA_BOUNDARY */ PRIO_POST_DATA_BOUNDARY, /* DO_POST_DATA_BOUNDARY */ PRIO_EVENT_TRIGGER, /* DO_EVENT_TRIGGER */ diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index cd421c59443..7b7acc80448 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -1923,7 +1923,7 @@ dumpTimestamp(const char *msg) } /* - * Helper function for rolenamehash hash table. + * Helper function for rolename_hash hash table. */ static uint32 hash_string_pointer(char *s) diff --git a/src/bin/scripts/t/100_vacuumdb.pl b/src/bin/scripts/t/100_vacuumdb.pl index 46101899ae7..4788c313a7f 100644 --- a/src/bin/scripts/t/100_vacuumdb.pl +++ b/src/bin/scripts/t/100_vacuumdb.pl @@ -71,7 +71,7 @@ $node->issues_sql_like( 'vacuumdb --no-process-main'); $node->command_fails( [ 'vacuumdb', '--analyze-only', '--no-process-main', 'postgres' ], - '--analyze-only and --no-process_main specified together'); + '--analyze-only and --no-process-main specified together'); $node->issues_sql_like( [ 'vacuumdb', '--no-process-toast', 'postgres' ], qr/statement: VACUUM \(PROCESS_TOAST FALSE, SKIP_DATABASE_STATS\).*;/, |