"SET search_path" commands were added to the beginning of the script.
The attatched patch should fix the problem. It probably should be
applied against the 7.3 and 7.4 branches.
Steven Singer
my $setQuery;
$setQuery = "SET search_path = public";
- $setResult = $masterConn->exec($setQuery);
+ my $setResult = $masterConn->exec($setQuery);
if($setResult->resultStatus!=PGRES_COMMAND_OK) {
logErrorMessage($masterConn->errorMessage . "\n" .
$setQuery);
my $setQuery2;
$setQuery2 = "SET autocommit TO 'on'";
- $setResult2 = $masterConn->exec($setQuery2);
+ my $setResult2 = $masterConn->exec($setQuery2);
if($setResult2->resultStatus!=PGRES_COMMAND_OK) {
logErrorMessage($masterConn->errorMessage . "\n" .
$setQuery2);