From 8b7bdb39a99a2ac35b6516de43cc895ca25b7ef2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 17 Mar 2025 09:23:02 +0100 Subject: [PATCH] Bug 38944: Fix tidiness t/db_dependent/check_kohastructure.t This is an odd one, why this change? --- t/db_dependent/check_kohastructure.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/db_dependent/check_kohastructure.t b/t/db_dependent/check_kohastructure.t index e3132ea6591..ab2318dab93 100755 --- a/t/db_dependent/check_kohastructure.t +++ b/t/db_dependent/check_kohastructure.t @@ -23,6 +23,7 @@ use C4::Context; my $content = read_file( C4::Context->config("intranetdir") . '/installer/data/mysql/kohastructure.sql' ); my @drop_stmt_missing; my $ccc = $content; + while ( $content =~ m|CREATE TABLE `?([^`\n ]*)`?\s?\(\s*\n|g ) { my $match = $1; next if $match =~ m|^IF NOT EXISTS |; -- 2.34.1