OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
anonymous_namespace{ArrowImporter.h}::ArrowValue< double > Struct Template Reference

#include <ArrowImporter.h>

+ Inheritance diagram for anonymous_namespace{ArrowImporter.h}::ArrowValue< double >:
+ Collaboration diagram for anonymous_namespace{ArrowImporter.h}::ArrowValue< double >:

Public Types

using VALUE_TYPE = double
 

Public Member Functions

 ArrowValue (const DataBufferBase &data, const VALUE_TYPE &v)
 
template<typename DATA_TYPE >
 operator DATA_TYPE () const
 
- Public Member Functions inherited from anonymous_namespace{ArrowImporter.h}::ArrowValueBase< double >
 ArrowValueBase (const DataBufferBase &data, const double &v)
 
int64_t resolve_time (const double &v, std::enable_if_t< enabled > *=0) const
 
int64_t resolve_time (const double &v, std::enable_if_t<!enabled > *=0) const
 

Additional Inherited Members

- Public Attributes inherited from anonymous_namespace{ArrowImporter.h}::ArrowValueBase< double >
const DataBufferBasedata
 
const double v
 
const int32_t dimension
 

Detailed Description

template<>
struct anonymous_namespace{ArrowImporter.h}::ArrowValue< double >

Definition at line 338 of file ArrowImporter.h.

Member Typedef Documentation

using anonymous_namespace{ArrowImporter.h}::ArrowValue< double >::VALUE_TYPE = double

Definition at line 339 of file ArrowImporter.h.

Constructor & Destructor Documentation

anonymous_namespace{ArrowImporter.h}::ArrowValue< double >::ArrowValue ( const DataBufferBase data,
const VALUE_TYPE v 
)
inline

Definition at line 340 of file ArrowImporter.h.

Member Function Documentation

template<typename DATA_TYPE >
anonymous_namespace{ArrowImporter.h}::ArrowValue< double >::operator DATA_TYPE ( ) const
inlineexplicit

Definition at line 344 of file ArrowImporter.h.

References to_string().

344  {
345  if constexpr (std::is_integral<DATA_TYPE>::value) { // NOLINT
346  const auto ti = data.cd->columnType;
347  DATA_TYPE v = ti.is_decimal() ? this->v * pow(10, ti.get_scale()) : this->v;
348  if (!(std::numeric_limits<DATA_TYPE>::lowest() < v &&
349  v <= std::numeric_limits<DATA_TYPE>::max())) {
350  data_conversion_error<DATA_TYPE>(v, data.cd, data.bad_rows_tracker);
351  }
352  return v;
353  } else if constexpr (std::is_floating_point<DATA_TYPE>::value) { // NOLINT
354  if (std::is_same<DATA_TYPE, float>::value) {
355  if (!(std::numeric_limits<float>::lowest() < v &&
356  v <= std::numeric_limits<float>::max())) {
357  data_conversion_error<float>(v, data.cd, data.bad_rows_tracker);
358  }
359  }
360  return v;
361  } else if constexpr (std::is_same<DATA_TYPE, std::string>::value) { // NOLINT
362  return std::to_string(v);
363  }
364  }
std::string to_string(char const *&&v)
import_export::BadRowsTracker *const bad_rows_tracker
SQLTypeInfo columnType

+ Here is the call graph for this function:


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