We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f49e4a commit 5c21395Copy full SHA for 5c21395
plugins/dbms/sybase/enumeration.py
@@ -240,7 +240,7 @@ def getColumns(self, onlyColNames=False):
240
columns = {}
241
242
for name, type_ in filterPairValues(zip(retVal[0]["%s.name" % randStr], retVal[0]["%s.usertype" % randStr])):
243
- columns[name] = sybaseTypes.get(type_, type_)
+ columns[name] = SYBASE_TYPES.get(type_, type_)
244
245
table[safeSQLIdentificatorNaming(tbl)] = columns
246
kb.data.cachedColumns[safeSQLIdentificatorNaming(conf.db)] = table
0 commit comments