fixed PTDEBUG error on Cxn - 1394934

This commit is contained in:
Frank Cizmich
2014-11-21 12:12:05 -02:00
parent 9877d71674
commit 5d875e5f55
8 changed files with 0 additions and 8 deletions

View File

@@ -234,7 +234,6 @@ sub is_cluster_node {
my $sql = "SHOW VARIABLES LIKE 'wsrep\_on'";
PTDEBUG && _d($cxn->name, $sql);
my $row = $cxn->dbh->selectrow_arrayref($sql);
PTDEBUG && _d(Dumper($row));
return $row && $row->[1] && ($row->[1] eq 'ON' || $row->[1] eq '1') ? 1 : 0;
}