Remove version check from pg_regress_multi.pl

The check is not necessary anymore after f59cf2b818.
pull/1470/head
Andres Freund 2017-06-26 18:07:43 -07:00
parent 9d7f33be2a
commit 535416384c
1 changed files with 2 additions and 10 deletions

View File

@ -436,18 +436,10 @@ for my $port (@workerPorts)
my @arguments = (
"--host", $host,
'--port', $masterPort,
'--user', $user
'--user', $user,
'--bindir', "tmp_check/tmp-bin"
);
if ($majorversion eq '9.5' || $majorversion eq '9.6' || $majorversion eq '10')
{
push(@arguments, '--bindir', "tmp_check/tmp-bin");
}
else
{
die "Citus is not compatible with the detected PostgreSQL version $majorversion";
}
# Add load extension parameters to the argument list
for my $extension (@extensions)
{