MCPcopy Create free account
hub / github.com/ByConity/ByConity / mainEntryClickHouseKeeper

Function mainEntryClickHouseKeeper

programs/keeper/Keeper.cpp:65–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63
64
65int mainEntryClickHouseKeeper(int argc, char ** argv)
66{
67 DB::Keeper app;
68
69 try
70 {
71 return app.run(argc, argv);
72 }
73 catch (...)
74 {
75 std::cerr << DB::getCurrentExceptionMessage(true) << "\n";
76 auto code = DB::getCurrentExceptionCode();
77 return code ? code : 1;
78 }
79}
80
81namespace DB
82{

Callers 1

mainFunction · 0.85

Calls 3

getCurrentExceptionCodeFunction · 0.85
runMethod · 0.45

Tested by

no test coverage detected