OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
anonymous_namespace{CastIR.cpp} Namespace Reference

Functions

bool byte_array_cast (const SQLTypeInfo &operand_ti, const SQLTypeInfo &ti)
 

Function Documentation

bool anonymous_namespace{CastIR.cpp}::byte_array_cast ( const SQLTypeInfo operand_ti,
const SQLTypeInfo ti 
)

Definition at line 66 of file CastIR.cpp.

References SQLTypeInfo::get_size(), SQLTypeInfo::get_subtype(), SQLTypeInfo::is_array(), and kTINYINT.

Referenced by CodeGenerator::codegenCast().

66  {
67  return (operand_ti.is_array() && ti.is_array() && ti.get_subtype() == kTINYINT &&
68  operand_ti.get_size() > 0 && operand_ti.get_size() == ti.get_size());
69 }
HOST DEVICE SQLTypes get_subtype() const
Definition: sqltypes.h:392
HOST DEVICE int get_size() const
Definition: sqltypes.h:403
bool is_array() const
Definition: sqltypes.h:583

+ Here is the call graph for this function:

+ Here is the caller graph for this function: