Skip to content
Snippets Groups Projects
Commit 3b394f8d authored by Stéphane Wirtel's avatar Stéphane Wirtel
Browse files

[MERGE]

bzr revid: stephane@tinyerp.com-20090527150036-a2k6ndl0fe6oe8xs
parents ed483d1e b18b8134
No related branches found
No related tags found
No related merge requests found
......@@ -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 = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment