diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/t/002_pg_dump.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/t/002_pg_dump.pl b/src/bin/pg_dump/t/002_pg_dump.pl index ccd0ed6a539..0d7a49826a1 100644 --- a/src/bin/pg_dump/t/002_pg_dump.pl +++ b/src/bin/pg_dump/t/002_pg_dump.pl @@ -6414,7 +6414,8 @@ foreach my $test ( next; } - $create_sql .= $tests{$test}->{create_sql}; + # Add terminating semicolon + $create_sql .= $tests{$test}->{create_sql} . ";"; } } |