mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
25 lines
753 B
C++
25 lines
753 B
C++
#include <new>
|
|
|
|
#include <common/phdr_cache.h>
|
|
|
|
|
|
int mainEntryClickHouseServer(int argc, char ** argv);
|
|
|
|
/**
|
|
* This is the entry-point for the split build server. The initialization
|
|
* is copied from single-binary entry point in main.cpp.
|
|
*/
|
|
int main(int argc_, char ** argv_)
|
|
{
|
|
/// Reset new handler to default (that throws std::bad_alloc)
|
|
/// It is needed because LLVM library clobbers it.
|
|
std::set_new_handler(nullptr);
|
|
|
|
/// PHDR cache is required for query profiler to work reliably
|
|
/// It also speed up exception handling, but exceptions from dynamically loaded libraries (dlopen)
|
|
/// will work only after additional call of this function.
|
|
updatePHDRCache();
|
|
|
|
return mainEntryClickHouseServer(argc_, argv_);
|
|
}
|