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
Jason Petersen 2016-10-03 17:22:19 -06:00
parent 24a7d71187
commit fa4421099f
No known key found for this signature in database
GPG Key ID: 9F1D3510D110ABA9
1 changed files with 1 additions and 1 deletions

View File

@ -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];