Note in docstrings that ignored kwargs are required for API conformance.
Change-Id: Icc9a8c63c0936a7c5255841ef49d10a83496763a
def contains(self, other, **kwargs):
"""Boolean expression. Test if elements are a superset of the
elements of the argument array expression.
+
+ kwargs may be ignored by this operator but are required for API
+ conformance.
"""
return self.operate(CONTAINS, other, result_type=sqltypes.Boolean)
def contains(self, other, **kwargs):
"""Boolean expression. Test if keys (or array) are a superset
of/contained the keys of the argument jsonb expression.
+
+ kwargs may be ignored by this operator but are required for API
+ conformance.
"""
return self.operate(CONTAINS, other, result_type=sqltypes.Boolean)
def contains(self, other, **kwargs):
"""Boolean expression. Test if keys (or array) are a superset
of/contained the keys of the argument jsonb expression.
+
+ kwargs may be ignored by this operator but are required for API
+ conformance.
"""
return self.operate(CONTAINS, other, result_type=sqltypes.Boolean)
"""Boolean expression. Returns true if the right hand operand,
which can be an element or a range, is contained within the
column.
+
+ kwargs may be ignored by this operator but are required for API
+ conformance.
"""
return self.expr.op("@>", is_comparison=True)(other)
as well as :ref:`ormtutorial_joins`
for more details on constructing outer joins.
+ kwargs may be ignored by this operator but are required for API
+ conformance.
"""
if not self.property.uselist:
raise sa_exc.InvalidRequestError(