pg_upgrade.diff
text/x-diff
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: unified
| File | + | − |
|---|---|---|
| contrib/pg_upgrade/relfilenode.c | 0 | 0 |
diff --git a/contrib/pg_upgrade/relfilenode.c b/contrib/pg_upgrade/relfilenode.c
new file mode 100644
index 54ee5f0..a1e30b1
*** a/contrib/pg_upgrade/relfilenode.c
--- b/contrib/pg_upgrade/relfilenode.c
*************** transfer_all_new_dbs(DbInfoArr *old_db_a
*** 37,43 ****
int old_dbnum, new_dbnum;
const char *msg = NULL;
! prep_status("Restoring user relation files\n");
/* Scan the old cluster databases and transfer their files */
for (old_dbnum = new_dbnum = 0;
--- 37,44 ----
int old_dbnum, new_dbnum;
const char *msg = NULL;
! prep_status("%s user relation files\n",
! user_opts.transfer_mode == TRANSFER_MODE_LINK ? "Linking" : "Copying");
/* Scan the old cluster databases and transfer their files */
for (old_dbnum = new_dbnum = 0;