mirror of https://gitee.com/bigwinds/arangodb
fix for Windows build
This commit is contained in:
parent
66f3840563
commit
ec7bb3e820
|
@ -30,7 +30,6 @@
|
||||||
#include "Aql/AstNode.h"
|
#include "Aql/AstNode.h"
|
||||||
#include "Aql/SortCondition.h"
|
#include "Aql/SortCondition.h"
|
||||||
#include "Aql/Variable.h"
|
#include "Aql/Variable.h"
|
||||||
#include "Indexes/Index.h"
|
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace triagens::basics;
|
using namespace triagens::basics;
|
||||||
|
@ -102,7 +101,7 @@ bool Index::supportsSortCondition (triagens::aql::SortCondition const* sortCondi
|
||||||
/// @brief get an iterator for the index
|
/// @brief get an iterator for the index
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
triagens::arango::IndexIterator* Index::getIterator (arango::IndexIteratorContext* context,
|
triagens::arango::IndexIterator* Index::getIterator (triagens::arango::IndexIteratorContext* context,
|
||||||
triagens::aql::Ast* ast,
|
triagens::aql::Ast* ast,
|
||||||
triagens::aql::AstNode const* condition,
|
triagens::aql::AstNode const* condition,
|
||||||
triagens::aql::Variable const* reference,
|
triagens::aql::Variable const* reference,
|
||||||
|
|
|
@ -35,9 +35,11 @@
|
||||||
#include "Basics/json.h"
|
#include "Basics/json.h"
|
||||||
#include "Basics/JsonHelper.h"
|
#include "Basics/JsonHelper.h"
|
||||||
#include "Indexes/Index.h"
|
#include "Indexes/Index.h"
|
||||||
|
#include "Indexes/IndexIterator.h"
|
||||||
|
|
||||||
namespace triagens {
|
namespace triagens {
|
||||||
namespace aql {
|
namespace aql {
|
||||||
|
class Ast;
|
||||||
struct AstNode;
|
struct AstNode;
|
||||||
class SortCondition;
|
class SortCondition;
|
||||||
struct Variable;
|
struct Variable;
|
||||||
|
@ -183,11 +185,11 @@ namespace triagens {
|
||||||
/// @brief get an iterator for the index
|
/// @brief get an iterator for the index
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
arango::IndexIterator* getIterator (arango::IndexIteratorContext*,
|
triagens::arango::IndexIterator* getIterator (triagens::arango::IndexIteratorContext*,
|
||||||
triagens::aql::Ast*,
|
triagens::aql::Ast*,
|
||||||
triagens::aql::AstNode const*,
|
triagens::aql::AstNode const*,
|
||||||
triagens::aql::Variable const*,
|
triagens::aql::Variable const*,
|
||||||
bool) const;
|
bool) const;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief specialize the condition for the index
|
/// @brief specialize the condition for the index
|
||||||
|
|
Loading…
Reference in New Issue