Support Doris query ES by HTTP way (#925)

This commit is contained in:
lide
2019-04-28 17:14:44 +08:00
committed by ZHAO Chun
parent 4559bc3558
commit 9c82d41981
45 changed files with 4373 additions and 24 deletions

View File

@ -27,6 +27,10 @@ std::string StringValue::debug_string() const {
return std::string(ptr, len);
}
std::string StringValue::to_string() const {
return std::string(ptr, len);
}
std::ostream& operator<<(std::ostream& os, const StringValue& string_value) {
return os << string_value.debug_string();
}