# Check that we have a DBI module to support the DB, if this
# is a database module (but not Schema)
- if ($file =~ m{Bugzilla/DB/([^/]+)\.pm$} and $file ne "Bugzilla/DB/Schema.pm") {
+ if ($file =~ m{Bugzilla/DB/([^/]+)\.pm$}
+ and $file ne "Bugzilla/DB/Schema.pm"
+ and $file ne "Bugzilla/DB/QuoteIdentifier.pm") {
my $module = lc($1);
my $dbd = DB_MODULE->{$module}->{dbd}->{module};
eval("use $dbd; 1") or skip "$file: $dbd not installed", 1;