View | Details | Raw Unified | Return to bug 38944
Collapse All | Expand All

(-)a/t/db_dependent/check_kohastructure.t (-1 / +1 lines)
Lines 23-28 use C4::Context; Link Here
23
my $content = read_file( C4::Context->config("intranetdir") . '/installer/data/mysql/kohastructure.sql' );
23
my $content = read_file( C4::Context->config("intranetdir") . '/installer/data/mysql/kohastructure.sql' );
24
my @drop_stmt_missing;
24
my @drop_stmt_missing;
25
my $ccc = $content;
25
my $ccc = $content;
26
26
while ( $content =~ m|CREATE TABLE `?([^`\n ]*)`?\s?\(\s*\n|g ) {
27
while ( $content =~ m|CREATE TABLE `?([^`\n ]*)`?\s?\(\s*\n|g ) {
27
    my $match = $1;
28
    my $match = $1;
28
    next if $match =~ m|^IF NOT EXISTS |;
29
    next if $match =~ m|^IF NOT EXISTS |;
29
- 

Return to bug 38944