Fix for an Issue #597

This commit is contained in:
Miroslav Stampar 2014-01-15 10:29:53 +01:00
parent bc29bf6481
commit ab36e5a2f0

View File

@ -281,7 +281,7 @@ class Databases:
for db, table in filterPairValues(values): for db, table in filterPairValues(values):
db = safeSQLIdentificatorNaming(db) db = safeSQLIdentificatorNaming(db)
table = safeSQLIdentificatorNaming(table, True) table = safeSQLIdentificatorNaming(unArrayizeValue(table), True)
if db not in kb.data.cachedTables: if db not in kb.data.cachedTables:
kb.data.cachedTables[db] = [table] kb.data.cachedTables[db] = [table]