Merge pull request #71 from hrushikesh/5f86eba0a04af29c4f33ded97b519bc78ca90265

RUBY-380 Support geoHaystack index type.
This commit is contained in:
Kyle Banker 2011-12-13 12:07:16 -08:00
commit 840535aa61
2 changed files with 5 additions and 4 deletions

View File

@ -21,9 +21,10 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'mongo/version'
module Mongo
ASCENDING = 1
DESCENDING = -1
GEO2D = '2d'
ASCENDING = 1
DESCENDING = -1
GEO2D = '2d'
GEOHAYSTACK = 'geoHaystack'
DEFAULT_MAX_BSON_SIZE = 4 * 1024 * 1024

View File

@ -888,7 +888,7 @@ module Mongo
field_spec[spec.to_s] = 1
elsif spec.is_a?(Array) && spec.all? {|field| field.is_a?(Array) }
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]
else
raise MongoArgumentError, "Invalid index field #{f[1].inspect}; " +