mirror of https://github.com/citusdata/citus.git
Remove version check from pg_regress_multi.pl
The check is not necessary anymore after f59cf2b818
.
pull/1470/head
parent
9d7f33be2a
commit
535416384c
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue