From 0ef73b53147d0247b233e5ead7ad8c2383653926 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 13 Feb 2024 16:30:42 +0000 Subject: [PATCH] Bug 36051: (QA follow-up) Use IGNORE in INSERT Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- installer/data/mysql/atomicupdate/bug_36051.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_36051.pl b/installer/data/mysql/atomicupdate/bug_36051.pl index 0461900e29..7756102562 100755 --- a/installer/data/mysql/atomicupdate/bug_36051.pl +++ b/installer/data/mysql/atomicupdate/bug_36051.pl @@ -10,7 +10,7 @@ return { # Do you stuffs here $dbh->do( q{ - INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('SMSSendAdditionalOptions', '', '', 'Additional SMS::Send parameters used to send SMS messages', 'free'); } ); -- 2.39.5