add geoHaystack index support
This commit is contained in:
parent
221c40da3f
commit
5f86eba0a0
|
@ -24,6 +24,7 @@ module Mongo
|
||||||
ASCENDING = 1
|
ASCENDING = 1
|
||||||
DESCENDING = -1
|
DESCENDING = -1
|
||||||
GEO2D = '2d'
|
GEO2D = '2d'
|
||||||
|
GEOHAYSTACK = 'geoHaystack'
|
||||||
|
|
||||||
DEFAULT_MAX_BSON_SIZE = 4 * 1024 * 1024
|
DEFAULT_MAX_BSON_SIZE = 4 * 1024 * 1024
|
||||||
|
|
||||||
|
|
|
@ -888,7 +888,7 @@ module Mongo
|
||||||
field_spec[spec.to_s] = 1
|
field_spec[spec.to_s] = 1
|
||||||
elsif spec.is_a?(Array) && spec.all? {|field| field.is_a?(Array) }
|
elsif spec.is_a?(Array) && spec.all? {|field| field.is_a?(Array) }
|
||||||
spec.each do |f|
|
spec.each do |f|
|
||||||
if [Mongo::ASCENDING, Mongo::DESCENDING, Mongo::GEO2D].include?(f[1])
|
if [Mongo::ASCENDING, Mongo::DESCENDING, Mongo::GEO2D, Mongo::GEOHAYSTACK].include?(f[1])
|
||||||
field_spec[f[0].to_s] = f[1]
|
field_spec[f[0].to_s] = f[1]
|
||||||
else
|
else
|
||||||
raise MongoArgumentError, "Invalid index field #{f[1].inspect}; " +
|
raise MongoArgumentError, "Invalid index field #{f[1].inspect}; " +
|
||||||
|
|
Loading…
Reference in New Issue