diff --git a/CHANGELOG b/CHANGELOG index d95ca62ba4..cb2959a7a4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) diff --git a/js/apps/system/aardvark/frontend/js/modules/org/arangodb/arango-collection-common.js b/js/apps/system/aardvark/frontend/js/modules/org/arangodb/arango-collection-common.js index 0072ab137f..771c9e6b9a 100644 --- a/js/apps/system/aardvark/frontend/js/modules/org/arangodb/arango-collection-common.js +++ b/js/apps/system/aardvark/frontend/js/modules/org/arangodb/arango-collection-common.js @@ -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