diff --git a/data/xml/queries.xml b/data/xml/queries.xml
index a56c6a646..b72925b1c 100644
--- a/data/xml/queries.xml
+++ b/data/xml/queries.xml
@@ -1951,7 +1951,7 @@
-
+
diff --git a/lib/core/settings.py b/lib/core/settings.py
index 4b82bc890..98fe36e44 100644
--- a/lib/core/settings.py
+++ b/lib/core/settings.py
@@ -20,7 +20,7 @@ from lib.core.enums import OS
from thirdparty import six
# sqlmap version (...)
-VERSION = "1.10.7.61"
+VERSION = "1.10.7.62"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
diff --git a/tests/test_agent.py b/tests/test_agent.py
index 203e27896..211fbb7fd 100644
--- a/tests/test_agent.py
+++ b/tests/test_agent.py
@@ -94,6 +94,7 @@ NULL_WRAPPER = {
"PostgreSQL": "COALESCE",
"Presto": "COALESCE",
"Raima Database Manager": "IFNULL",
+ "SAP HANA": "IFNULL",
"SAP MaxDB": "VALUE",
"SQLite": "COALESCE",
"Snowflake": "NVL",
@@ -115,6 +116,7 @@ HEX_FUNCTION = {
"Oracle": "RAWTOHEX(",
"PostgreSQL": "ENCODE(",
"Presto": "TO_HEX(",
+ "SAP HANA": "BINTOHEX(",
"SAP MaxDB": "HEX(",
"SQLite": "HEX(",
"Spanner": "TO_HEX(",