Impala
Impalaistheopensource,nativeanalyticdatabaseforApacheHadoop.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
json-util.cc
Go to the documentation of this file.
1 #include "util/json-util.h"
2 
3 using namespace impala;
4 using namespace rapidjson;
5 using namespace std;
6 
7 template <>
8 ENABLE_IF_NOT_ARITHMETIC(std::string, void)
9  ToJsonValue<std::string>(const std::string& value, const TUnit::type type,
10  rapidjson::Document* document, rapidjson::Value* out_val) { }
11 
12 // void impala::JsonAddString(const string& name, const string& value, Value* json,
13 // Document* document) {
14 // Value str_val(value.c_str(), document->GetAllocator());
15 // json->AddMember(name.c_str(), str_val, document->GetAllocator());
16 // }
#define ENABLE_IF_NOT_ARITHMETIC(type_param, return_type)
Definition: template-util.h:37
ToJsonValue(const T &value, const TUnit::type unit, rapidjson::Document *document, rapidjson::Value *out_val)
Definition: json-util.h:33