Changeset 426 for wiki-toolkit/trunk/lib/Wiki/Toolkit/Setup/MySQL.pm
- Timestamp:
- 05/11/08 01:50:06 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
wiki-toolkit/trunk/lib/Wiki/Toolkit/Setup/MySQL.pm
r345 r426 165 165 } 166 166 167 # Internal method - what tables are defined?167 # Internal method - what Wiki::Toolkit tables are defined? 168 168 sub fetch_tables_listing { 169 169 my $dbh = shift; … … 174 174 my %tables; 175 175 while ( my $table = $sth->fetchrow_array ) { 176 $tables{$table} = 1;176 exists $create_sql{$table} and $tables{$table} = 1; 177 177 } 178 178 return %tables;
