None / True / False render as literals.
For SQLite, "IS" is used as SQLite lacks
"IS DISTINCT FROM" but its "IS" operator acts
this way for NULL.
Doctext-author: Mike Bayer <mike_mp@zzzcomputing.com>
Change-Id: I9227b81f7207b42627a0349d14d40b46aa756cce
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/248
:ref:`change_3653`
+ .. change::
+ :tags: feature, sql
+
+ New :meth:`.ColumnOperators.is_distinct_from` and
+ :meth:`.ColumnOperators.isnot_distinct_from` operators; pull request
+ courtesy Sebastian Bank.
+
+ .. seealso::
+
+ :ref:`change_is_distinct_from`
+
.. change::
:tags: bug, orm
:tickets: 3488
:ticket:`3216`
+.. _change_is_distinct_from:
+
+Support for IS DISTINCT FROM and IS NOT DISTINCT FROM
+------------------------------------------------------
+
+New operators :meth:`.ColumnOperators.is_distinct_from` and
+:meth:`.ColumnOperators.isnot_distinct_from` allow the IS DISTINCT
+FROM and IS NOT DISTINCT FROM sql operation::
+
+ >>> print column('x').is_distinct_from(None)
+ x IS DISTINCT FROM NULL
+
+Handling is provided for NULL, True and False::
+
+ >>> print column('x').isnot_distinct_from(False)
+ x IS NOT DISTINCT FROM false
+
+For SQLite, which doesn't have this operator, "IS" / "IS NOT" is rendered,
+which on SQLite works for NULL unlike other backends::
+
+ >>> from sqlalchemy.dialects import sqlite
+ >>> print column('x').is_distinct_from(None).compile(dialect=sqlite.dialect())
+ x IS NOT NULL
+
.. _change_1957:
Core and ORM support for FULL OUTER JOIN
# sqlite has no "FOR UPDATE" AFAICT
return ''
+ def visit_is_distinct_from_binary(self, binary, operator, **kw):
+ return "%s IS NOT %s" % (self.process(binary.left),
+ self.process(binary.right))
+
+ def visit_isnot_distinct_from_binary(self, binary, operator, **kw):
+ return "%s IS %s" % (self.process(binary.left),
+ self.process(binary.right))
+
class SQLiteDDLCompiler(compiler.DDLCompiler):
operators.gt: ' > ',
operators.ge: ' >= ',
operators.eq: ' = ',
+ operators.is_distinct_from: ' IS DISTINCT FROM ',
+ operators.isnot_distinct_from: ' IS NOT DISTINCT FROM ',
operators.concat_op: ' || ',
operators.match_op: ' MATCH ',
operators.notmatch_op: ' NOT MATCH ',
op,
type_=result_type,
negate=negate, modifiers=kwargs)
+ elif op in (operators.is_distinct_from, operators.isnot_distinct_from):
+ return BinaryExpression(expr,
+ _literal_as_text(obj),
+ op,
+ type_=result_type,
+ negate=negate, modifiers=kwargs)
else:
# all other None/True/False uses IS, IS NOT
if op in (operators.eq, operators.is_):
negate=operators.is_)
else:
raise exc.ArgumentError(
- "Only '=', '!=', 'is_()', 'isnot()' operators can "
- "be used with None/True/False")
+ "Only '=', '!=', 'is_()', 'isnot()', "
+ "'is_distinct_from()', 'isnot_distinct_from()' "
+ "operators can be used with None/True/False")
else:
obj = _check_literal(expr, op, obj)
"gt": (_boolean_compare, operators.le),
"ge": (_boolean_compare, operators.lt),
"eq": (_boolean_compare, operators.ne),
+ "is_distinct_from": (_boolean_compare, operators.isnot_distinct_from),
+ "isnot_distinct_from": (_boolean_compare, operators.is_distinct_from),
"like_op": (_boolean_compare, operators.notlike_op),
"ilike_op": (_boolean_compare, operators.notilike_op),
"notlike_op": (_boolean_compare, operators.like_op),
"""
return self.operate(ne, other)
+ def is_distinct_from(self, other):
+ """Implement the ``IS DISTINCT FROM`` operator.
+
+ Renders "a IS DISTINCT FROM b" on most platforms;
+ on some such as SQLite may render "a IS NOT b".
+
+ .. versionadded:: 1.1
+
+ """
+ return self.operate(is_distinct_from, other)
+
+ def isnot_distinct_from(self, other):
+ """Implement the ``IS NOT DISTINCT FROM`` operator.
+
+ Renders "a IS NOT DISTINCT FROM b" on most platforms;
+ on some such as SQLite may render "a IS b".
+
+ .. versionadded:: 1.1
+
+ """
+ return self.operate(isnot_distinct_from, other)
+
def __gt__(self, other):
"""Implement the ``>`` operator.
def isfalse(a):
raise NotImplementedError()
+
+def is_distinct_from(a, b):
+ return a.is_distinct_from(b)
+
+
+def isnot_distinct_from(a, b):
+ return a.isnot_distinct_from(b)
+
+
def is_(a, b):
return a.is_(b)
eq: 5,
ne: 5,
+ is_distinct_from: 5,
+ isnot_distinct_from: 5,
gt: 5,
lt: 5,
ge: 5,
"1"
)
+ def test_is_distinct_from(self):
+ self.assert_compile(
+ sql.column('x').is_distinct_from(None),
+ "x IS NOT NULL"
+ )
+
+ self.assert_compile(
+ sql.column('x').isnot_distinct_from(False),
+ "x IS 0"
+ )
+
def test_localtime(self):
self.assert_compile(
func.localtimestamp(),
def test_notequals_true(self):
self._do_operate_test(operators.ne, True)
+ def test_is_distinct_from_true(self):
+ self._do_operate_test(operators.is_distinct_from, True)
+
+ def test_is_distinct_from_false(self):
+ self._do_operate_test(operators.is_distinct_from, False)
+
+ def test_is_distinct_from_null(self):
+ self._do_operate_test(operators.is_distinct_from, None)
+
+ def test_isnot_distinct_from_true(self):
+ self._do_operate_test(operators.isnot_distinct_from, True)
+
def test_is_true(self):
self._do_operate_test(operators.is_, True)
self.assert_compile(f / (f / (f - f)), "f / (f / (f - f))")
+class IsDistinctFromTest(fixtures.TestBase, testing.AssertsCompiledSQL):
+ __dialect__ = 'default'
+
+ table1 = table('mytable',
+ column('myid', Integer),
+ )
+
+ def test_is_distinct_from(self):
+ self.assert_compile(self.table1.c.myid.is_distinct_from(1),
+ "mytable.myid IS DISTINCT FROM :myid_1")
+
+ def test_is_distinct_from_sqlite(self):
+ self.assert_compile(self.table1.c.myid.is_distinct_from(1),
+ "mytable.myid IS NOT ?",
+ dialect=sqlite.dialect())
+
+ def test_is_distinct_from_postgresql(self):
+ self.assert_compile(self.table1.c.myid.is_distinct_from(1),
+ "mytable.myid IS DISTINCT FROM %(myid_1)s",
+ dialect=postgresql.dialect())
+
+ def test_not_is_distinct_from(self):
+ self.assert_compile(~self.table1.c.myid.is_distinct_from(1),
+ "mytable.myid IS NOT DISTINCT FROM :myid_1")
+
+ def test_not_is_distinct_from_postgresql(self):
+ self.assert_compile(~self.table1.c.myid.is_distinct_from(1),
+ "mytable.myid IS NOT DISTINCT FROM %(myid_1)s",
+ dialect=postgresql.dialect())
+
+ def test_isnot_distinct_from(self):
+ self.assert_compile(self.table1.c.myid.isnot_distinct_from(1),
+ "mytable.myid IS NOT DISTINCT FROM :myid_1")
+
+ def test_isnot_distinct_from_sqlite(self):
+ self.assert_compile(self.table1.c.myid.isnot_distinct_from(1),
+ "mytable.myid IS ?",
+ dialect=sqlite.dialect())
+
+ def test_isnot_distinct_from_postgresql(self):
+ self.assert_compile(self.table1.c.myid.isnot_distinct_from(1),
+ "mytable.myid IS NOT DISTINCT FROM %(myid_1)s",
+ dialect=postgresql.dialect())
+
+ def test_not_isnot_distinct_from(self):
+ self.assert_compile(~self.table1.c.myid.isnot_distinct_from(1),
+ "mytable.myid IS DISTINCT FROM :myid_1")
+
+ def test_not_isnot_distinct_from_postgresql(self):
+ self.assert_compile(~self.table1.c.myid.isnot_distinct_from(1),
+ "mytable.myid IS DISTINCT FROM %(myid_1)s",
+ dialect=postgresql.dialect())
+
+
class InTest(fixtures.TestBase, testing.AssertsCompiledSQL):
__dialect__ = 'default'