File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -233,8 +233,6 @@ def get_dist_ops(operator):
233
233
})
234
234
self .geography_operators = {
235
235
'bboverlaps' : PostGISOperator ('&&' ),
236
- 'exact' : PostGISOperator ('~=' ),
237
- 'same_as' : PostGISOperator ('~=' ),
238
236
}
239
237
240
238
# Creating a dictionary lookup of all GIS terms for PostGIS.
Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ def test04_invalid_operators_functions(self):
44
44
# `@` operator not available.
45
45
self .assertRaises (ValueError , City .objects .filter (point__contained = z .poly ).count )
46
46
47
+ # Regression test for #14060, `~=` was never really implemented for PostGIS.
48
+ htown = City .objects .get (name = 'Houston' )
49
+ self .assertRaises (ValueError , City .objects .get , point__exact = htown .point )
50
+
47
51
def test05_geography_layermapping (self ):
48
52
"Testing LayerMapping support on models with geography fields."
49
53
# There is a similar test in `layermap` that uses the same data set,
You can’t perform that action at this time.
0 commit comments