Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0ff74f0

Browse files
committed
add ; missing due to my carelessness
1 parent c2c9fbe commit 0ff74f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_dump/pg_backup_archiver.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*
1717
* IDENTIFICATION
18-
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.156 2008/05/04 03:46:08 adunstan Exp $
18+
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.157 2008/05/04 08:32:21 adunstan Exp $
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
@@ -2136,7 +2136,7 @@ static void
21362136
_doSetFixedOutputState(ArchiveHandle *AH)
21372137
{
21382138
/* Disable statement_timeout in archive for pg_restore/psql */
2139-
ahprintf(AH, "SET statement_timeout = 0;\n")
2139+
ahprintf(AH, "SET statement_timeout = 0;\n");
21402140

21412141
/* Select the correct character set encoding */
21422142
ahprintf(AH, "SET client_encoding = '%s';\n",

0 commit comments

Comments
 (0)