mirror of https://gitee.com/bigwinds/arangodb
added derived files
This commit is contained in:
parent
8f99e59747
commit
0203c8ca7c
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue