1
0
Fork 0

added derived files

This commit is contained in:
Jan Steemann 2014-12-05 19:03:34 +01:00
parent 8f99e59747
commit 0203c8ca7c
2 changed files with 7 additions and 5 deletions

View File

@ -36,6 +36,8 @@ v2.4.0 (XXXX-XX-XX)
v2.3.2 (XXXX-XX-XX)
-------------------
* fixed issue #1163: invalid fullCount value returned from AQL
* fixed range operator precedence
* limit default maximum number of plans created by AQL optimizer to 256 (from 1024)

View File

@ -505,7 +505,7 @@ ArangoCollection.prototype.closedRange = function (name, left, right) {
/// @startDocuBlock collectionGeo
/// `collection.geo(location-attribute)`
///
/// Looks up a geo index defined on attribute *location-attribute*.
/// Looks up a geo index defined on attribute *location_attribute*.
///
/// Returns a geo index object if an index was found. The *near* or
/// *within* operators can then be used to execute a geo-spatial query on
@ -513,17 +513,17 @@ ArangoCollection.prototype.closedRange = function (name, left, right) {
///
/// This is useful for collections with multiple defined geo indexes.
///
/// `collection.geo(location-attribute, true)`
/// `collection.geo(location_attribute, true)`
///
/// Looks up a geo index on a compound attribute *location-attribute*.
/// Looks up a geo index on a compound attribute *location_attribute*.
///
/// Returns a geo index object if an index was found. The *near* or
/// *within* operators can then be used to execute a geo-spatial query on
/// this particular index.
///
/// `collection.geo(latitude-attribute, longitude-attribute)`
/// `collection.geo(latitude_attribute, longitude_attribute)`
///
/// Looks up a geo index defined on the two attributes *latitude-attribute*
/// Looks up a geo index defined on the two attributes *latitude_attribute*
/// and *longitude-attribute*.
///
/// Returns a geo index object if an index was found. The *near* or