From aa7258364c10b54a9c5438ce7e5e6133da1b03bd Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 24 Jul 2025 13:16:21 +0200 Subject: [PATCH] Bug 40006: Remove dbh->do return value from updatedatabase output There are 2 occurrences of "0E0" in the test suite output. We should remove them. Test plan: root@kohadevbox:koha$ perl /kohadevbox/misc4dev/run_tests.pl --run-all-tests And confirm that the 0E0 does no longer appear You can abort when the update DB process is done Signed-off-by: David Nind --- installer/data/mysql/db_revs/240600064.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/db_revs/240600064.pl b/installer/data/mysql/db_revs/240600064.pl index 892fa0fc2b..05c3531af5 100755 --- a/installer/data/mysql/db_revs/240600064.pl +++ b/installer/data/mysql/db_revs/240600064.pl @@ -8,7 +8,7 @@ return { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; - say $dbh->do( + $dbh->do( q{ UPDATE columns_settings SET columnname = SUBSTRING(columnname,LOCATE("_",columnname)+1) -- 2.39.5