djangonauts / django-pgjson

PostgreSQL json field support for Django
http://djangonauts.github.io/django-pgjson/
Other
131 stars 39 forks source link

Fix 2 of 2 for #12 #14

Closed lanzz closed 9 years ago

lanzz commented 9 years ago

Fix operator precedence

The ->> operator has a very low precedence, so expressions like field->>'key' IS NULL actually evaluate as field->>('key' IS NULL) which does not make much sense