[JDK] Support OpenJDK (#2804)

Support compile and running Frontend process and Broker process with OpenJDK.
OpenJDK 13 is tested.
This commit is contained in:
Mingyu Chen
2020-02-20 23:47:02 +08:00
committed by GitHub
parent ccc3412f13
commit 35b09ecd66
18 changed files with 289 additions and 51 deletions

View File

@ -91,17 +91,17 @@ std::string print_plan_node_type(const TPlanNodeType::type& type) {
std::string get_build_version(bool compact) {
std::stringstream ss;
ss << PALO_BUILD_VERSION
ss << DORIS_BUILD_VERSION
#ifdef NDEBUG
<< " RELEASE"
#else
<< " DEBUG"
#endif
<< " (build " << PALO_BUILD_HASH
<< " (build " << DORIS_BUILD_HASH
<< ")";
if (!compact) {
ss << std::endl << "Built on " << PALO_BUILD_TIME << " by " << PALO_BUILD_INFO;
ss << std::endl << "Built on " << DORIS_BUILD_TIME << " by " << DORIS_BUILD_INFO;
}
return ss.str();