MT#65078 fix @ interpolation

Change-Id: I5adedf2bd914200f4b8594cfd2dbb0e2f765225b
mr26.1.1
Rene Krenn 2 months ago
parent 0baa30f583
commit 4e962af155

@ -294,7 +294,7 @@ sub connect_billdbh {
unless defined($billdbh);
if ($multi_master) {
my ($current_format) = $billdbh->selectrow_array("SELECT LOWER(@@binlog_format)");
my ($current_format) = $billdbh->selectrow_array('SELECT LOWER(@@binlog_format)');
if (!defined $current_format) {
FATAL "Error getting DB binlog format: " . $billdbh->errstr;
} elsif ($current_format eq 'mixed') {
@ -324,7 +324,7 @@ sub connect_acctdbh {
unless defined($acctdbh);
if ($multi_master) {
my ($current_format) = $acctdbh->selectrow_array("SELECT LOWER(@@binlog_format)");
my ($current_format) = $acctdbh->selectrow_array('SELECT LOWER(@@binlog_format)');
if (!defined $current_format) {
FATAL "Error getting DB binlog format: " . $acctdbh->errstr;
} elsif ($current_format eq 'mixed') {

Loading…
Cancel
Save