/rtmp/pg_dump2.diff

text/x-diff

Filename: /rtmp/pg_dump2.diff
Type: text/x-diff
Part: 0
Message: Re: pg_dump -X

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+
src/bin/pg_dump/pg_dump.c 0 0
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
new file mode 100644
index feeeae8..546a04c
*** a/src/bin/pg_dump/pg_dump.c
--- b/src/bin/pg_dump/pg_dump.c
*************** main(int argc, char **argv)
*** 481,490 ****
  					outputNoTablespaces = 1;
  				else if (strcmp(optarg, "use-set-session-authorization") == 0)
  					use_setsessauth = 1;
- 				else if (strcmp(optarg, "no-security-label") == 0)
- 					no_security_label = 1;
- 				else if (strcmp(optarg, "no-unlogged-table-data") == 0)
- 					no_unlogged_table_data = 1;
  				else
  				{
  					fprintf(stderr,
--- 481,486 ----