=== Applying patches on top of PostgreSQL commit ID 4e0e1f3b2704e04768a4bccb7102450d74730a50 === /etc/rc.d/jail: WARNING: Per-jail configuration via jail_* variables is obsolete. Please consider migrating to /etc/jail.conf. Fri Apr 17 08:52:23 UTC 2026 On branch cf/6219 nothing to commit, working tree clean === using 'git am' to apply patch ./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch === Applying: Add --max-table-segment-pages option to pg_dump for parallel table dumping. .git/rebase-apply/patch:26: trailing whitespace. If the number of data pages in the relation is more than npages .git/rebase-apply/patch:36: trailing whitespace. In the extreme case a single 8kB heap page can have ~200 toast pointers each .git/rebase-apply/patch:37: trailing whitespace. corresponding to 1GB of data. If this data is also non-compressible then a .git/rebase-apply/patch:94: trailing whitespace. * This is currently used for collecting reverse .git/rebase-apply/patch:95: trailing whitespace. * dependencies for chunked data dump warning: squelched 20 whitespace errors warning: 25 lines add whitespace errors. Using index info to reconstruct a base tree... M doc/src/sgml/ref/pg_dump.sgml M src/bin/pg_dump/pg_backup_archiver.c M src/bin/pg_dump/pg_backup_archiver.h M src/bin/pg_dump/pg_dump.c Falling back to patching base and 3-way merge... Auto-merging src/bin/pg_dump/pg_dump.c Auto-merging src/bin/pg_dump/pg_backup_archiver.h Auto-merging src/bin/pg_dump/pg_backup_archiver.c CONFLICT (content): Merge conflict in src/bin/pg_dump/pg_backup_archiver.c Auto-merging doc/src/sgml/ref/pg_dump.sgml error: Failed to merge in the changes. hint: Use 'git am --show-current-patch=diff' to see the failed patch Patch failed at 0001 Add --max-table-segment-pages option to pg_dump for parallel table dumping. When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". === using patch(1) to apply patch ./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch === patching file doc/src/sgml/ref/pg_dump.sgml patching file src/bin/pg_dump/pg_backup.h patching file src/bin/pg_dump/pg_backup_archiver.c Hunk #1 FAILED at 44. Hunk #2 succeeded at 155 (offset 1 line). Hunk #3 succeeded at 1997 (offset 1 line). Hunk #4 succeeded at 2038 (offset 1 line). Hunk #5 succeeded at 2054 (offset 1 line). Hunk #6 succeeded at 2071 (offset 1 line). Hunk #7 succeeded at 2821 (offset 1 line). Hunk #8 succeeded at 3051 (offset 1 line). Hunk #9 succeeded at 3282 (offset 1 line). Hunk #10 succeeded at 5053 (offset 1 line). Hunk #11 succeeded at 5074 (offset 1 line). Hunk #12 succeeded at 5086 (offset 1 line). Hunk #13 succeeded at 5172 (offset 1 line). 1 out of 13 hunks FAILED -- saving rejects to file src/bin/pg_dump/pg_backup_archiver.c.rej patching file src/bin/pg_dump/pg_backup_archiver.h patching file src/bin/pg_dump/pg_dump.c Hunk #9 succeeded at 7437 (offset -1 lines). Hunk #10 succeeded at 7687 (offset -1 lines). patching file src/bin/pg_dump/pg_dump.h patching file src/bin/pg_dump/t/004_pg_dump_parallel.pl patching file src/fe_utils/option_utils.c patching file src/include/fe_utils/option_utils.h Unstaged changes after reset: M doc/src/sgml/ref/pg_dump.sgml M src/bin/pg_dump/pg_backup.h M src/bin/pg_dump/pg_backup_archiver.c M src/bin/pg_dump/pg_backup_archiver.h M src/bin/pg_dump/pg_dump.c M src/bin/pg_dump/pg_dump.h M src/bin/pg_dump/t/004_pg_dump_parallel.pl M src/fe_utils/option_utils.c M src/include/fe_utils/option_utils.h Removing src/bin/pg_dump/pg_backup_archiver.c.rej === using 'git apply' to apply patch ./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch === /work/patches/./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch:51: trailing whitespace. If the number of data pages in the relation is more than npages /work/patches/./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch:61: trailing whitespace. In the extreme case a single 8kB heap page can have ~200 toast pointers each /work/patches/./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch:62: trailing whitespace. corresponding to 1GB of data. If this data is also non-compressible then a /work/patches/./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch:119: trailing whitespace. * This is currently used for collecting reverse /work/patches/./v16-0001-Add-max-table-segment-pages-option-to-pg_dump-fo.patch:120: trailing whitespace. * dependencies for chunked data dump Applied patch to 'doc/src/sgml/ref/pg_dump.sgml' cleanly. Applied patch to 'src/bin/pg_dump/pg_backup.h' cleanly. Applied patch to 'src/bin/pg_dump/pg_backup_archiver.c' with conflicts. Applied patch to 'src/bin/pg_dump/pg_backup_archiver.h' cleanly. Applied patch to 'src/bin/pg_dump/pg_dump.c' cleanly. Applied patch to 'src/bin/pg_dump/pg_dump.h' cleanly. Applied patch to 'src/bin/pg_dump/t/004_pg_dump_parallel.pl' cleanly. Applied patch to 'src/fe_utils/option_utils.c' cleanly. Applied patch to 'src/include/fe_utils/option_utils.h' cleanly. U src/bin/pg_dump/pg_backup_archiver.c warning: squelched 20 whitespace errors warning: 25 lines add whitespace errors. diff --cc src/bin/pg_dump/pg_backup_archiver.c index fecf6f2d1ce,e32bd8149cb..00000000000 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@@ -44,7 -44,7 +44,11 @@@ #include "pg_backup_archiver.h" #include "pg_backup_db.h" #include "pg_backup_utils.h" ++<<<<<<< ours +#include "pgtar.h" ++======= + #include "storage/block.h" ++>>>>>>> theirs #define TEXT_DUMP_HEADER "--\n-- PostgreSQL database dump\n--\n\n" #define TEXT_DUMPALL_HEADER "--\n-- PostgreSQL database cluster dump\n--\n\n"