summaryrefslogtreecommitdiffstats
path: root/scripts/remove-non-public-data.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/remove-non-public-data.pl')
-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;