diff options
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/array.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/array.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/array.py b/lib/sqlalchemy/dialects/postgresql/array.py index 1b036ac32..3cb60d3f3 100644 --- a/lib/sqlalchemy/dialects/postgresql/array.py +++ b/lib/sqlalchemy/dialects/postgresql/array.py @@ -221,6 +221,9 @@ class ARRAY(sqltypes.ARRAY): 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) |