summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authordklawren <dklawren@users.noreply.github.com>2018-07-11 23:29:04 +0200
committerGitHub <noreply@github.com>2018-07-11 23:29:04 +0200
commite671c6b2bd6ef20f357ed710377258a730e268a3 (patch)
treed22de3ede9b9432e3a68cfda9e1c5682e4fa6749 /scripts
parent8de2aaf9e213651afaf12ec10b1091c22b7a9c55 (diff)
downloadbugzilla-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-xscripts/remove-non-public-data.pl2
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;