From 4fd69bd40cf0d30b866fc833e1765077f59938c6 Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Fri, 17 Jul 2015 14:25:08 +0300 Subject: [PATCH] MT#13971 Remove unnecessary debug from fill_billing_fees procedure Change-Id: Id28dfcd9b088b3142630d404873c7d7cd14722cd --- db_scripts/diff/15167.up | 1 - 1 file changed, 1 deletion(-) diff --git a/db_scripts/diff/15167.up b/db_scripts/diff/15167.up index a1231678..7f42ebb5 100644 --- a/db_scripts/diff/15167.up +++ b/db_scripts/diff/15167.up @@ -38,7 +38,6 @@ inner join ( if( @profile_id is not null, " and i_nu.billing_profile_id = ? ", " and 1 = ? "), " group by i_nu.billing_profile_id,i_nu.source,i_nu.destination,i_nu.direction,i_nu.type ) u on bnu.id=u.min_id"); - select @statement; IF @profile_id is null THEN SET @profile_id = 1; END IF; PREPARE stmt FROM @statement; EXECUTE stmt USING @profile_id;