From 4e962af1559eff8ded768e60bcbc4312818eae16 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Tue, 9 Jun 2026 16:01:21 +0200 Subject: [PATCH] MT#65078 fix @ interpolation Change-Id: I5adedf2bd914200f4b8594cfd2dbb0e2f765225b --- rate-o-mat.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rate-o-mat.pl b/rate-o-mat.pl index 822afaa..3f82866 100755 --- a/rate-o-mat.pl +++ b/rate-o-mat.pl @@ -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') {