diff options
author | bbaetz%acm.org <> | 2003-08-03 13:39:45 +0200 |
---|---|---|
committer | bbaetz%acm.org <> | 2003-08-03 13:39:45 +0200 |
commit | ee7c14dc05644df11362ca5430a4ca9b3fb42761 (patch) | |
tree | be957f1ecf12ef3dd7a46443a4d94f655ac6de3f | |
parent | 193c5ac6be8e883c57e4caf3c87b181db0351be0 (diff) | |
download | bugzilla-ee7c14dc05644df11362ca5430a4ca9b3fb42761.tar.gz bugzilla-ee7c14dc05644df11362ca5430a4ca9b3fb42761.tar.xz |
Bug 212095 - checksetup.pl gets confused by newer DBD::mysql quoting of
table values.
r=jouni, a=justdave
-rwxr-xr-x | checksetup.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index d0b1764b4..00605415d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1874,7 +1874,8 @@ if(scalar(@isam_tables)) { # Get a list of the existing tables (if any) in the database -my @tables = map { $_ =~ s/.*\.//; $_ } $dbh->tables; +$sth = $dbh->table_info(undef, undef, undef, "TABLE"); +my @tables = @{$dbh->selectcol_arrayref($sth, { Columns => [3] })}; #print 'Tables: ', join " ", @tables, "\n"; # add lines here if you add more --LOCAL-- config vars that end up in the enums: |