mirror of https://github.com/citusdata/citus.git
Set SHOW_CONTEXT variable for 9.6
By default, CONTEXT is now only shown for ERROR messages, so we'll set it to always display to preserve similarity to 9.5 output in tests.pull/858/head
parent
24a7d71187
commit
fa4421099f
|
@ -142,7 +142,7 @@ sysopen my $fh, "tmp_check/tmp-bin/psql", O_CREAT|O_TRUNC|O_RDWR, 0700
|
|||
or die "Could not create psql wrapper";
|
||||
print $fh "#!/bin/bash\n";
|
||||
print $fh "exec $bindir/psql ";
|
||||
print $fh "--variable=master_port=$masterPort ";
|
||||
print $fh "--variable=master_port=$masterPort --variable=SHOW_CONTEXT=always ";
|
||||
for my $workeroff (0 .. $#workerPorts)
|
||||
{
|
||||
my $port = $workerPorts[$workeroff];
|
||||
|
|
Loading…
Reference in New Issue