From 96ba4f74f02e8afe9f96450b29ecc9b05d970656 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 8 Jan 2020 10:11:07 -0300 Subject: [PATCH] Bug 24263: (QA follow-up) Atomic update fixes Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/atomicupdate/bug_24215.perl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_24215.perl b/installer/data/mysql/atomicupdate/bug_24215.perl index 61a1915baf..2cde433d45 100644 --- a/installer/data/mysql/atomicupdate/bug_24215.perl +++ b/installer/data/mysql/atomicupdate/bug_24215.perl @@ -1,10 +1,10 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { $dbh->do( q| - UPDATE borowers SET relationship = NULL + UPDATE borrowers SET relationship = NULL WHERE relationship = "" |); SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 24215 - Replace relationship with NULL when "")\n"; + print "Upgrade to $DBversion done (Bug 24215 - Replace relationship with NULL when empty string)\n"; } -- 2.24.1