Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

removed resource in storage, just use graph's when package #396

Merged
merged 5 commits into from
Mar 19, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ include_directories(AFTER ${CMAKE_CURRENT_BINARY_DIR}/src/kvstore/plugins/hbase)
nebula_add_subdirectory(src)
nebula_add_subdirectory(conf)
nebula_add_subdirectory(scripts)
nebula_add_subdirectory(resources)

add_custom_target(
clean-modules
Expand Down
12 changes: 0 additions & 12 deletions resources/CMakeLists.txt

This file was deleted.

19 changes: 0 additions & 19 deletions resources/gflags.json

This file was deleted.

3 changes: 0 additions & 3 deletions src/storage/StorageFlags.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ DEFINE_bool(enable_vertex_cache, true, "Enable vertex cache");

DEFINE_int32(reader_handlers, 32, "Total reader handlers");

DEFINE_bool(enable_multi_versions, false, "If true, the insert timestamp will be the wall clock. "
"If false, always has the same timestamp of max");

DEFINE_uint64(default_mvcc_ver, 0L, "vertex/edge version if enable_multi_versions set to false."
"this, has to be more than 0 if toss enabled. "
"because we need lock before edge. ");
Expand Down
2 changes: 0 additions & 2 deletions src/storage/StorageFlags.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ DECLARE_bool(enable_vertex_cache);

DECLARE_int32(reader_handlers);

DECLARE_bool(enable_multi_versions);

DECLARE_uint64(default_mvcc_ver);

DECLARE_string(reader_handlers_type);
Expand Down