mirror of https://gitee.com/bigwinds/arangodb
renamed files
This commit is contained in:
parent
21793ff9f7
commit
cbd43b3839
|
@ -141,6 +141,7 @@ add_executable(
|
|||
Indexes/PathBasedIndex.cpp
|
||||
Indexes/PrimaryIndex.cpp
|
||||
Indexes/SkiplistIndex2.cpp
|
||||
Indexes/skiplist-helper.cpp
|
||||
IndexOperators/index-operator.cpp
|
||||
Replication/ContinuousSyncer.cpp
|
||||
Replication/InitialSyncer.cpp
|
||||
|
@ -182,7 +183,6 @@ add_executable(
|
|||
Scheduler/Task.cpp
|
||||
Scheduler/TaskManager.cpp
|
||||
Scheduler/TimerTask.cpp
|
||||
SkipLists/skiplistIndex.cpp
|
||||
Statistics/statistics.cpp
|
||||
Utils/CollectionExport.cpp
|
||||
Utils/Cursor.cpp
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
|
||||
#include "Basics/Common.h"
|
||||
#include "Indexes/PathBasedIndex.h"
|
||||
#include "Indexes/skiplist-helper.h"
|
||||
#include "IndexOperators/index-operator.h"
|
||||
#include "SkipLists/skiplistIndex.h"
|
||||
#include "VocBase/shaped-json.h"
|
||||
#include "VocBase/vocbase.h"
|
||||
#include "VocBase/voc-types.h"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief skiplist index
|
||||
/// @brief skiplist index helper
|
||||
///
|
||||
/// @file
|
||||
///
|
||||
|
@ -27,7 +27,7 @@
|
|||
/// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "skiplistIndex.h"
|
||||
#include "skiplist-helper.h"
|
||||
#include "Basics/Utf8Helper.h"
|
||||
#include "VocBase/document-collection.h"
|
||||
#include "VocBase/shaped-json.h"
|
|
@ -27,8 +27,8 @@
|
|||
/// @author Copyright 2011-2013, triAGENS GmbH, Cologne, Germany
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef ARANGODB_SKIP_LISTS_SKIPLIST_INDEX_H
|
||||
#define ARANGODB_SKIP_LISTS_SKIPLIST_INDEX_H 1
|
||||
#ifndef ARANGODB_INDEXES_SKIPLIST_HELPER_H
|
||||
#define ARANGODB_INDEXES_SKIPLIST_HELPER_H 1
|
||||
|
||||
#include "Basics/Common.h"
|
||||
#include "Basics/SkipList.h"
|
|
@ -99,6 +99,7 @@ arangod_libarangod_a_SOURCES = \
|
|||
arangod/Indexes/PathBasedIndex.cpp \
|
||||
arangod/Indexes/PrimaryIndex.cpp \
|
||||
arangod/Indexes/SkiplistIndex2.cpp \
|
||||
arangod/Indexes/skiplist-helper.cpp \
|
||||
arangod/IndexOperators/index-operator.cpp \
|
||||
arangod/Replication/ContinuousSyncer.cpp \
|
||||
arangod/Replication/InitialSyncer.cpp \
|
||||
|
@ -140,7 +141,6 @@ arangod_libarangod_a_SOURCES = \
|
|||
arangod/Scheduler/Task.cpp \
|
||||
arangod/Scheduler/TaskManager.cpp \
|
||||
arangod/Scheduler/TimerTask.cpp \
|
||||
arangod/SkipLists/skiplistIndex.cpp \
|
||||
arangod/Statistics/statistics.cpp \
|
||||
arangod/Utils/CollectionExport.cpp \
|
||||
arangod/Utils/Cursor.cpp \
|
||||
|
|
Loading…
Reference in New Issue