Skip to content
Snippets Groups Projects
Commit 5c57bedf authored by Miguel Pignatelli's avatar Miguel Pignatelli
Browse files

Final semicolons on test queries are now optional (they were forbidden before)

parent ff0e462a
No related branches found
No related tags found
No related merge requests found
......@@ -136,6 +136,11 @@ sub _run_test {
my $reference_size = $test->{reference_size};
my $logical_test = $test->{logical_test};
# Final semicolons are removed if present
if ($query =~ /(;\s*$)/) {
$query =~ s/$1//;
}
print "Test description: $description\n";
print "Checking whether the number of rows $logical_test $reference_size\n";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment