forked from vesoft-inc/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Step1 use 3rdparty v3 (vesoft-inc#404)
* Step1 use 3rdparty v3 (vesoft-inc#3554) * Switched to use third-party v3 1) Switched from HeaderClientChannel to the RocketChannel (common/thrif/ThriftClientManager-inc.h) 2) Fixed a bug in common/process/ProcessUtils.cpp 3) Fixed all UT 4) 99.9% of changes are mechanical: set_xxx(yyy) ==> xxx_ref() = yyy 5) Only allow empty functions on a single line * Solved merge conflicts 1) Solved merge conflicts 2) Solved ldap issues * Fixed lint error Co-authored-by: Sherman <sherman.ye@vesoft.com>
- Loading branch information
1 parent
a4acc81
commit fe6f62b
Showing
591 changed files
with
11,970 additions
and
7,190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# - Try to find BerkeleyDB includes dirs and libraries | ||
# | ||
# Usage of this module as follows: | ||
# | ||
# find_package(BerkeleyDB) | ||
# | ||
# Variables used by this module, they can change the default behaviour and need | ||
# to be set before calling find_package: | ||
# | ||
# Variables defined by this module: | ||
# | ||
# Bdb_FOUND System has BerkeleyDB, include and lib dirs found | ||
# Bdb_INCLUDE_DIR The Berkeley includes directories. | ||
# Bdb_LIBRARIES The Berkeley libraries. | ||
|
||
# We are not looking for db.h here, in order to avoid conflicts with rocksdb/db.h | ||
find_path(Bdb_INCLUDE_DIR | ||
NAMES db_cxx.h | ||
PATH_SUFFIXES berkeleydb-5.1.29) | ||
find_library(Bdb_LIBRARIES | ||
NAMES db-5.1 | ||
PATH_SUFFIXES berkeleydb-5.1.29) | ||
|
||
if(Bdb_INCLUDE_DIR AND Bdb_LIBRARIES) | ||
set(Bdb_FOUND TRUE) | ||
mark_as_advanced( | ||
Bdb_INCLUDE_DIR | ||
Bdb_LIBRARIES | ||
) | ||
endif() | ||
|
||
if(NOT Bdb_FOUND) | ||
message(FATAL_ERROR "BerkeleyDB doesn't exist") | ||
else() | ||
message(STATUS "Found BerkeleyDB libraries: " ${Bdb_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# - Try to find Sasl includes dirs and libraries | ||
# | ||
# Usage of this module as follows: | ||
# | ||
# find_package(Sasl) | ||
# | ||
# Variables used by this module, they can change the default behaviour and need | ||
# to be set before calling find_package: | ||
# | ||
# Variables defined by this module: | ||
# | ||
# Sasl_FOUND System has Sasl, include and lib dirs found | ||
# Sasl_INCLUDE_DIR The Sasl includes directories. | ||
# Sasl_LIBRARIES The Sasl libraries. | ||
|
||
find_path(Sasl_INCLUDE_DIR | ||
NAMES sasl.h | ||
PATH_SUFFIXES sasl) | ||
find_library(Sasl_LIBRARIES NAMES sasl2) | ||
|
||
if(Sasl_INCLUDE_DIR AND Sasl_LIBRARIES) | ||
set(Sasl_FOUND TRUE) | ||
mark_as_advanced( | ||
Sasl_INCLUDE_DIR | ||
Sasl_LIBRARIES | ||
) | ||
endif() | ||
|
||
if(NOT Sasl_FOUND) | ||
message(FATAL_ERROR "Sasl doesn't exist") | ||
else() | ||
message(STATUS "Found Sasl libraries: " ${Sasl_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.