mirror of
https://github.com/Hopiu/django.git
synced 2026-04-16 13:01:09 +00:00
Removed unused 'Between' lookup.
It was added in20bab2cf9dand stopped being used for `Range` in00aa562884when `bilateral` was added to `Transform`.
This commit is contained in:
parent
72e5778b23
commit
6a383f773a
1 changed files with 0 additions and 5 deletions
|
|
@ -341,11 +341,6 @@ class IEndsWith(PatternLookup):
|
|||
Field.register_lookup(IEndsWith)
|
||||
|
||||
|
||||
class Between(BuiltinLookup):
|
||||
def get_rhs_op(self, connection, rhs):
|
||||
return "BETWEEN %s AND %s" % (rhs, rhs)
|
||||
|
||||
|
||||
class Range(BuiltinLookup):
|
||||
lookup_name = 'range'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue