minor fix because boolean-based blind on DB2 is a little bit different from other DBMSes

This commit is contained in:
Bernardo Damele 2013-01-17 21:58:15 +00:00
parent 1d6e642d41
commit a5e9168993

View File

@ -15,6 +15,9 @@ class Syntax(GenericSyntax):
@staticmethod @staticmethod
def unescape(expression, quote=True): def unescape(expression, quote=True):
if expression == "'"
return expression
if quote: if quote:
while True: while True:
index = expression.find("'") index = expression.find("'")