diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2008-05-04 08:32:21 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2008-05-04 08:32:21 +0000 |
commit | 0ff74f03b153abfe4cc10abe7be5a13cdbcac782 (patch) | |
tree | 91625a3e087651a8eeaeaf6a4b44cde05dc10701 | |
parent | c2c9fbef941adfae894eac69a7ea9734caf712a0 (diff) | |
download | postgresql-0ff74f03b153abfe4cc10abe7be5a13cdbcac782.tar.gz postgresql-0ff74f03b153abfe4cc10abe7be5a13cdbcac782.zip |
add ; missing due to my carelessness
-rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 6f508f7bd39..93fe90f7cdc 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.156 2008/05/04 03:46:08 adunstan Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.157 2008/05/04 08:32:21 adunstan Exp $ * *------------------------------------------------------------------------- */ @@ -2136,7 +2136,7 @@ static void _doSetFixedOutputState(ArchiveHandle *AH) { /* Disable statement_timeout in archive for pg_restore/psql */ - ahprintf(AH, "SET statement_timeout = 0;\n") + ahprintf(AH, "SET statement_timeout = 0;\n"); /* Select the correct character set encoding */ ahprintf(AH, "SET client_encoding = '%s';\n", |