Home
last modified time | relevance | path

Searched refs:is_distinct_from (Results 1 – 25 of 39) sorted by relevance

12

/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/sql/
H A Doperators.py376 def is_distinct_from(self, other): member in ColumnOperators
385 return self.operate(is_distinct_from, other)
1170 def is_distinct_from(a, b): function
1171 return a.is_distinct_from(b)
1343 is_distinct_from,
1429 is_distinct_from: 5,
H A Ddefault_comparator.py70 elif op in (operators.is_distinct_from, operators.isnot_distinct_from):
317 "isnot_distinct_from": (_boolean_compare, operators.is_distinct_from),
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/sql/
H A Doperators.py315 def is_distinct_from(self, other): member in ColumnOperators
324 return self.operate(is_distinct_from, other)
791 def is_distinct_from(a, b): function
792 return a.is_distinct_from(b)
1009 is_distinct_from: 5,
H A Ddefault_comparator.py42 elif op in (operators.is_distinct_from, operators.isnot_distinct_from):
262 "isnot_distinct_from": (_boolean_compare, operators.is_distinct_from),
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/sql/
H A Doperators.py376 def is_distinct_from(self, other): member in ColumnOperators
385 return self.operate(is_distinct_from, other)
1204 def is_distinct_from(a, b): function
1205 return a.is_distinct_from(b)
1472 is_distinct_from: 5,
H A Ddefault_comparator.py71 elif op in (operators.is_distinct_from, operators.isnot_distinct_from):
329 "isnot_distinct_from": (_boolean_compare, operators.is_distinct_from),
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/sql/
H A Doperators.py371 def is_distinct_from(self, other): member in ColumnOperators
380 return self.operate(is_distinct_from, other)
1307 def is_distinct_from(a, b): function
1308 return a.is_distinct_from(b)
1635 is_distinct_from: 5,
H A Ddefault_comparator.py61 operators.is_distinct_from,
326 "is_not_distinct_from": (_boolean_compare, operators.is_distinct_from),
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/concerns/
H A Dloaded_in_group_list.rb48 .where(children[:type].is_distinct_from(Namespaces::ProjectNamespace.sti_name))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/gandiva/
H A Dfunction_registry_math_ops.cc59 BINARY_SAFE_NULL_NEVER_BOOL_FN(is_distinct_from, {}), in GetMathOpsFunctionRegistry()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/gandiva/
H A Dfunction_registry_math_ops.cc59 BINARY_SAFE_NULL_NEVER_BOOL_FN(is_distinct_from, {}), in GetMathOpsFunctionRegistry()
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/diesel-1.4.8/src/pg/expression/
H A Dexpression_methods.rs56 fn is_distinct_from<T>(self, other: T) -> IsDistinctFrom<Self, T::Expression> in is_distinct_from() method
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/diesel-1.4.8/src/pg/expression/
H A Dexpression_methods.rs56 fn is_distinct_from<T>(self, other: T) -> IsDistinctFrom<Self, T::Expression> in is_distinct_from() method
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/gandiva/
H A Dfunction_registry_math_ops.cc67 BINARY_SAFE_NULL_NEVER_BOOL_FN(is_distinct_from, {}), in GetMathOpsFunctionRegistry()
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/test/sql/
H A Dtest_operators.py103 self._do_operate_test(operators.is_distinct_from, True)
106 self._do_operate_test(operators.is_distinct_from, False)
109 self._do_operate_test(operators.is_distinct_from, None)
1583 self.assert_compile(self.table1.c.myid.is_distinct_from(1),
1587 self.assert_compile(self.table1.c.myid.is_distinct_from(1),
1592 self.assert_compile(self.table1.c.myid.is_distinct_from(1),
1597 self.assert_compile(~self.table1.c.myid.is_distinct_from(1),
1601 self.assert_compile(~self.table1.c.myid.is_distinct_from(1),
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/sql/
H A Dtest_operators.py137 self._do_operate_test(operators.is_distinct_from, True)
140 self._do_operate_test(operators.is_distinct_from, False)
143 self._do_operate_test(operators.is_distinct_from, None)
1430 self.table1.c.myid.is_distinct_from(1),
1436 self.table1.c.myid.is_distinct_from(1),
1443 self.table1.c.myid.is_distinct_from(1),
1450 ~self.table1.c.myid.is_distinct_from(1),
1456 ~self.table1.c.myid.is_distinct_from(1),
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/sql/
H A Dtest_operators.py92 (operators.is_distinct_from, True),
93 (operators.is_distinct_from, False),
94 (operators.is_distinct_from, None),
1443 self.table1.c.myid.is_distinct_from(1),
1449 self.table1.c.myid.is_distinct_from(1),
1456 self.table1.c.myid.is_distinct_from(1),
1463 ~self.table1.c.myid.is_distinct_from(1),
1469 ~self.table1.c.myid.is_distinct_from(1),
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/test/sql/
H A Dtest_operators.py102 (operators.is_distinct_from, True),
103 (operators.is_distinct_from, False),
104 (operators.is_distinct_from, None),
1693 self.table1.c.myid.is_distinct_from(1),
1699 self.table1.c.myid.is_distinct_from(1),
1706 self.table1.c.myid.is_distinct_from(1),
1713 ~self.table1.c.myid.is_distinct_from(1),
1719 ~self.table1.c.myid.is_distinct_from(1),
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/doc/build/core/
H A Doperators.rst322 * :meth:`_sql.ColumnOperators.is_distinct_from`:
326 >>> print(column('x').is_distinct_from('some value'))
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/testing/suite/
H A Dtest_select.py789 tbl.select(tbl.c.col_a.is_distinct_from(tbl.c.col_b))
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/test/dialect/
H A Dtest_sqlite.py675 sql.column('x').is_distinct_from(None),
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/test/dialect/
H A Dtest_sqlite.py770 sql.column("x").is_distinct_from(None), "x IS NOT NULL"
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/testing/suite/
H A Dtest_select.py1767 tbl.select().where(tbl.c.col_a.is_distinct_from(tbl.c.col_b))
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/dialect/
H A Dtest_sqlite.py964 sql.column("x").is_distinct_from(None), "x IS NOT NULL"
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/doc/build/changelog/
H A Dmigration_11.rst1383 New operators :meth:`.ColumnOperators.is_distinct_from` and
1387 >>> print column('x').is_distinct_from(None)
1399 >>> print column('x').is_distinct_from(None).compile(dialect=sqlite.dialect())

12