Commit fcf70e0d authored by Tom Lane's avatar Tom Lane

Re-pgindent src/bin/pg_dump/*

Cleanup for recent patches --- it's not much change, but I got annoyed
while re-indenting the view-rule fix I'm working on.
parent f65b94f6
...@@ -2108,7 +2108,9 @@ _discoverArchiveFormat(ArchiveHandle *AH) ...@@ -2108,7 +2108,9 @@ _discoverArchiveFormat(ArchiveHandle *AH)
if (strncmp(sig, "PGDMP", 5) == 0) if (strncmp(sig, "PGDMP", 5) == 0)
{ {
int byteread; int byteread;
char vmaj, vmin, vrev; char vmaj,
vmin,
vrev;
/* /*
* Finish reading (most of) a custom-format header. * Finish reading (most of) a custom-format header.
...@@ -3563,7 +3565,9 @@ ReadHead(ArchiveHandle *AH) ...@@ -3563,7 +3565,9 @@ ReadHead(ArchiveHandle *AH)
*/ */
if (!AH->readHeader) if (!AH->readHeader)
{ {
char vmaj, vmin, vrev; char vmaj,
vmin,
vrev;
(*AH->ReadBufPtr) (AH, tmpMag, 5); (*AH->ReadBufPtr) (AH, tmpMag, 5);
......
...@@ -80,13 +80,18 @@ typedef z_stream *z_streamp; ...@@ -80,13 +80,18 @@ typedef z_stream *z_streamp;
#define K_VERS_1_4 MAKE_ARCHIVE_VERSION(1, 4, 0) /* Date & name in header */ #define K_VERS_1_4 MAKE_ARCHIVE_VERSION(1, 4, 0) /* Date & name in header */
#define K_VERS_1_5 MAKE_ARCHIVE_VERSION(1, 5, 0) /* Handle dependencies */ #define K_VERS_1_5 MAKE_ARCHIVE_VERSION(1, 5, 0) /* Handle dependencies */
#define K_VERS_1_6 MAKE_ARCHIVE_VERSION(1, 6, 0) /* Schema field in TOCs */ #define K_VERS_1_6 MAKE_ARCHIVE_VERSION(1, 6, 0) /* Schema field in TOCs */
#define K_VERS_1_7 MAKE_ARCHIVE_VERSION(1, 7, 0) /* File Offset size in header */ #define K_VERS_1_7 MAKE_ARCHIVE_VERSION(1, 7, 0) /* File Offset size in
#define K_VERS_1_8 MAKE_ARCHIVE_VERSION(1, 8, 0) /* change interpretation of ID * header */
numbers and dependencies */ #define K_VERS_1_8 MAKE_ARCHIVE_VERSION(1, 8, 0) /* change interpretation
#define K_VERS_1_9 MAKE_ARCHIVE_VERSION(1, 9, 0) /* add default_with_oids tracking */ * of ID numbers and
* dependencies */
#define K_VERS_1_9 MAKE_ARCHIVE_VERSION(1, 9, 0) /* add default_with_oids
* tracking */
#define K_VERS_1_10 MAKE_ARCHIVE_VERSION(1, 10, 0) /* add tablespace */ #define K_VERS_1_10 MAKE_ARCHIVE_VERSION(1, 10, 0) /* add tablespace */
#define K_VERS_1_11 MAKE_ARCHIVE_VERSION(1, 11, 0) /* add toc section indicator */ #define K_VERS_1_11 MAKE_ARCHIVE_VERSION(1, 11, 0) /* add toc section
#define K_VERS_1_12 MAKE_ARCHIVE_VERSION(1, 12, 0) /* add separate BLOB entries */ * indicator */
#define K_VERS_1_12 MAKE_ARCHIVE_VERSION(1, 12, 0) /* add separate BLOB
* entries */
/* Current archive version number (the format we can output) */ /* Current archive version number (the format we can output) */
#define K_VERS_MAJOR 1 #define K_VERS_MAJOR 1
......
...@@ -546,9 +546,11 @@ main(int argc, char **argv) ...@@ -546,9 +546,11 @@ main(int argc, char **argv)
if (dopt.column_inserts) if (dopt.column_inserts)
dopt.dump_inserts = 1; dopt.dump_inserts = 1;
/* Binary upgrade mode implies dumping sequence data even in schema-only /*
* Binary upgrade mode implies dumping sequence data even in schema-only
* mode. This is not exposed as a separate option, but kept separate * mode. This is not exposed as a separate option, but kept separate
* internally for clarity. */ * internally for clarity.
*/
if (dopt.binary_upgrade) if (dopt.binary_upgrade)
dopt.sequence_data = 1; dopt.sequence_data = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment