diff options
author | Andres Freund <andres@anarazel.de> | 2020-06-14 14:22:47 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2020-07-08 12:58:32 -0700 |
commit | e07633646a22734e85d7fc58a66855f747128e6b (patch) | |
tree | b2de0a718b24574d4cc52a493075013667515a19 /src/bin/pg_dump/parallel.h | |
parent | 5e7bbb528638c0f6d585bab107ec7a19e3a39deb (diff) | |
download | postgresql-e07633646a22734e85d7fc58a66855f747128e6b.tar.gz postgresql-e07633646a22734e85d7fc58a66855f747128e6b.zip |
code: replace 'master' with 'leader' where appropriate.
Leader already is the more widely used terminology, but a few places
didn't get the message.
Author: Andres Freund
Reviewed-By: David Steele
Discussion: https://postgr.es/m/20200615182235.x7lch5n6kcjq4aue@alap3.anarazel.de
Diffstat (limited to 'src/bin/pg_dump/parallel.h')
-rw-r--r-- | src/bin/pg_dump/parallel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/parallel.h b/src/bin/pg_dump/parallel.h index 4f8e627cd5b..a2e98cb87bf 100644 --- a/src/bin/pg_dump/parallel.h +++ b/src/bin/pg_dump/parallel.h @@ -18,7 +18,7 @@ #include "pg_backup_archiver.h" -/* Function to call in master process on completion of a worker task */ +/* Function to call in leader process on completion of a worker task */ typedef void (*ParallelCompletionPtr) (ArchiveHandle *AH, TocEntry *te, int status, |