1
0
Fork 0

Temporarily disabled lookup by skiplist index function. Has to be replimented using AQL instead.

This commit is contained in:
Michael Hackstein 2016-02-29 11:31:48 +01:00
parent 75a5035ab3
commit b478af2f3f
1 changed files with 5 additions and 0 deletions

View File

@ -512,6 +512,10 @@ static void ExecuteSkiplistQuery(
std::string const& signature, query_t type) {
v8::Isolate* isolate = args.GetIsolate();
v8::HandleScope scope(isolate);
// TODO Reimplement!
TRI_V8_THROW_EXCEPTION(TRI_ERROR_NOT_IMPLEMENTED);
return;
/*
// expecting index, example, skip, and limit
if (args.Length() < 2) {
@ -663,6 +667,7 @@ static void ExecuteSkiplistQuery(
}
return TRI_V8_RETURN(result);
*/
}
////////////////////////////////////////////////////////////////////////////////