This commit is contained in:
Miroslav Stampar 2011-02-09 17:05:06 +00:00
parent d9af01d73d
commit 6c582343fe

View File

@ -157,7 +157,7 @@ def columnExists(columnFile, regex=None):
columns = filterListValue(columns, regex)
if conf.db and not conf.db.endswith(METADB_SUFFIX):
table = "%s.%s" % (conf.db, conf.tbl)
table = "%s%s%s" % (conf.db, '..' if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.SYBASE) else '.', conf.tbl)
else:
table = conf.tbl