Skip to content

Commit 4b6c524

Browse files
committed
one more minor update regarding last commit
1 parent 4492675 commit 4b6c524

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/takeover/udf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def udfEvalCmd(self, cmd, first=None, last=None, udfName=None):
9292
cmd = unescaper.unescape(cmd)
9393

9494
inject.goStacked("INSERT INTO %s(%s) VALUES (%s(%s))" % (self.cmdTblName, self.tblField, udfName, cmd))
95-
output = inject.getValue("SELECT %s FROM %s" % (self.tblField, self.cmdTblName), resumeValue=False, firstChar=first, lastChar=last)
95+
output = inject.getValue("SELECT %s FROM %s" % (self.tblField, self.cmdTblName), resumeValue=False, firstChar=first, lastChar=last, safeCharEncode=False)
9696
inject.goStacked("DELETE FROM %s" % self.cmdTblName)
9797

9898
if output and isinstance(output, (list, tuple)):

0 commit comments

Comments
 (0)