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[email protected]
next;
}
- $create_sql .= $tests{$test}->{create_sql};
+ # Add terminating semicolon
+ $create_sql .= $tests{$test}->{create_sql} . ";";
}
}