diff options
author | dklawren <dklawren@users.noreply.github.com> | 2018-07-11 23:29:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-11 23:29:04 +0200 |
commit | e671c6b2bd6ef20f357ed710377258a730e268a3 (patch) | |
tree | d22de3ede9b9432e3a68cfda9e1c5682e4fa6749 /scripts | |
parent | 8de2aaf9e213651afaf12ec10b1091c22b7a9c55 (diff) | |
download | bugzilla-e671c6b2bd6ef20f357ed710377258a730e268a3.tar.gz bugzilla-e671c6b2bd6ef20f357ed710377258a730e268a3.tar.xz |
no bug - Do not lowercase tables names when looking for tables to drop
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/remove-non-public-data.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |