From 97e037c57c225d91632484c541007c712a454c71 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 --- 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 fce3f90d983..5a3ee72211a 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 = REGEXP_REPLACE(columnname, '.*holdings_', '') -- 2.34.1