1
0
Fork 0

Merge branch 'aql2' of https://github.com/triAGENS/ArangoDB into aql2

This commit is contained in:
Jan Steemann 2014-08-07 11:44:32 +02:00
commit 2b85b04ce6
1 changed files with 9 additions and 1 deletions

View File

@ -292,6 +292,14 @@ namespace triagens {
// -----------------------------------------------------------------------------
// --SECTION-- AqlItemBlock
// -----------------------------------------------------------------------------
// an <AqlItemBlock> is a <nrItems>x<nrRegs> vector of <AqlValue>s (not
// pointers). The size of an <AqlItemBlock> is the number of items. Entries in a
// given column (i.e. all the values of a given register for all items in the
// block) have the same type and belong to the same collection. The document
// collection for a particular column are accessed via <getDocumentCollection>,
// and the entire array of document collections is accessed by
// <getDocumentCollections>. There is no access to an entire item, only access to
// particular registers of an item (via getValue).
class AqlItemBlock {
@ -402,7 +410,7 @@ namespace triagens {
}
////////////////////////////////////////////////////////////////////////////////
/// @brief getter for _data
/// @brief getter for _docColls
////////////////////////////////////////////////////////////////////////////////
vector<TRI_document_collection_t const*>& getDocumentCollections () {