OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GeoTargetValuePtrSerializer< kPOINT > Struct Template Reference

#include <ResultSetGeoSerialization.h>

Static Public Member Functions

static TargetValue serialize (const SQLTypeInfo &geo_ti, std::array< VarlenDatumPtr, 1 > &vals)
 

Detailed Description

template<>
struct GeoTargetValuePtrSerializer< kPOINT >

Definition at line 105 of file ResultSetGeoSerialization.h.

Member Function Documentation

static TargetValue GeoTargetValuePtrSerializer< kPOINT >::serialize ( const SQLTypeInfo geo_ti,
std::array< VarlenDatumPtr, 1 > &  vals 
)
inlinestatic

Definition at line 106 of file ResultSetGeoSerialization.h.

References SQLTypeInfo::get_notnull().

107  {
108  if (!geo_ti.get_notnull() && vals[0]->is_null) {
109  // NULL geo
110  // Pass along null datum, instead of an empty/null GeoTargetValuePtr
111  // return GeoTargetValuePtr();
112  }
113  return GeoPointTargetValuePtr({std::move(vals[0])});
114  }
HOST DEVICE bool get_notnull() const
Definition: sqltypes.h:398

+ Here is the call graph for this function:


The documentation for this struct was generated from the following file: