Skip to content

Commit 4a355b9

Browse files
committed
Minor update of error regex for Presto
1 parent 7008361 commit 4a355b9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

data/xml/errors.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@
199199
<error regexp="io\.prestosql\.jdbc"/>
200200
<error regexp="com\.simba\.presto\.jdbc"/>
201201
<error regexp="UNION query has different number of fields: \d+, \d+"/>
202+
<error regexp="line \d+:\d+: mismatched input '[^']+'. Expecting:"/>
202203
</dbms>
203204

204205
<dbms value="Altibase">

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.6.6.1"
23+
VERSION = "1.6.6.2"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)