Refs #33308 -- Stopped inheriting from FieldGetDbPrepValueMixin by PostgresOperatorLookup.

This commit is contained in:
Simon Charette 2022-11-15 12:00:10 +01:00 committed by Mariusz Felisiak
parent 70499b25c7
commit d87a7b9f4b
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ class FieldGetDbPrepValueIterableMixin(FieldGetDbPrepValueMixin):
return sql, tuple(params)
class PostgresOperatorLookup(FieldGetDbPrepValueMixin, Lookup):
class PostgresOperatorLookup(Lookup):
"""Lookup defined by operators on PostgreSQL."""
postgres_operator = None