Skip to content

Commit 698923d

Browse files
committed
pg_dump/t/002: append terminating semicolon to SQL commands
It's easy to overlook the need for one, and its lack is annoying for the next developer wanting to create a new test. Rather than expect every individual command to add the semicolon, just append one automatically. Discussion: http://postgr.es/m/20170503172746.rwftidszir67sgk7@alvherre.pgsql
1 parent 8f8b9be commit 698923d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bin/pg_dump/t/002_pg_dump.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6414,7 +6414,8 @@
64146414
next;
64156415
}
64166416
6417-
$create_sql .= $tests{$test}->{create_sql};
6417+
# Add terminating semicolon
6418+
$create_sql .= $tests{$test}->{create_sql} . ";";
64186419
}
64196420
}
64206421

0 commit comments

Comments
 (0)