Skip to content

Commit e7bc57b

Browse files
committed
Fix for an Issue sqlmapproject#683
1 parent 2a55f75 commit e7bc57b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/generic/databases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ def getColumns(self, onlyColNames=False, colTuple=None, bruteForce=None):
615615
infoMsg += "in database '%s'" % unsafeSQLIdentificatorNaming(conf.db)
616616
logger.info(infoMsg)
617617

618-
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL):
618+
if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.PGSQL, DBMS.HSQLDB):
619619
query = rootQuery.blind.count % (unsafeSQLIdentificatorNaming(tbl), unsafeSQLIdentificatorNaming(conf.db))
620620
query += condQuery
621621

0 commit comments

Comments
 (0)