bzr revid: stephane@tinyerp.com-20090527150036-a2k6ndl0fe6oe8xs
This commit is contained in:
Stephane Wirtel 2009-05-27 17:00:36 +02:00
commit 3b394f8d19
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ class expression(object):
query = '(%s.%s %s (%s))' % (table._table, left, operator, instr)
if check_nulls:
query = '(%s OR %s IS NULL)' % (query, left)
query = '(%s OR %s.%s IS NULL)' % (query, table._table, left)
else:
params = []