Skip to content

Commit 5c21395

Browse files
committed
Minor update for an Issue sqlmapproject#179
1 parent 1f49e4a commit 5c21395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/dbms/sybase/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def getColumns(self, onlyColNames=False):
240240
columns = {}
241241

242242
for name, type_ in filterPairValues(zip(retVal[0]["%s.name" % randStr], retVal[0]["%s.usertype" % randStr])):
243-
columns[name] = sybaseTypes.get(type_, type_)
243+
columns[name] = SYBASE_TYPES.get(type_, type_)
244244

245245
table[safeSQLIdentificatorNaming(tbl)] = columns
246246
kb.data.cachedColumns[safeSQLIdentificatorNaming(conf.db)] = table

0 commit comments

Comments
 (0)