From: dklawren Date: Wed, 11 Jul 2018 21:29:04 +0000 (-0400) Subject: no bug - Do not lowercase tables names when looking for tables to drop X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e671c6b2bd6ef20f357ed710377258a730e268a3;p=thirdparty%2Fbugzilla.git no bug - Do not lowercase tables names when looking for tables to drop --- diff --git a/scripts/remove-non-public-data.pl b/scripts/remove-non-public-data.pl index ce7948dd0..47c123464 100755 --- a/scripts/remove-non-public-data.pl +++ b/scripts/remove-non-public-data.pl @@ -155,7 +155,7 @@ foreach my $view (sort @{ $dbh->selectcol_arrayref("SHOW FULL TABLES IN $db_name # drop tables/columns -my @tables = map { lc } sort @{ $dbh->selectcol_arrayref("SHOW TABLES") }; +my @tables = sort @{ $dbh->selectcol_arrayref("SHOW TABLES") }; foreach my $table (@tables) { if (exists $whitelist{$table}) { my @drop_columns;