MCPcopy Create free account
hub / github.com/BlazingDB/blazingsql / parse_cudf_uint64

Method parse_cudf_uint64

engine/src/io/data_parser/sql/MySQLParser.cpp:193–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191}
192
193uint8_t mysql_parser::parse_cudf_uint64(void *src, size_t col, size_t row, std::vector<uint64_t> *v)
194{
195 auto res = (sql::ResultSet*)src;
196 ++col; // mysql count columns starting from 1
197 uint64_t raw_data = res->getUInt64(col);
198 if (res->wasNull()) return 0;
199 (*v)[row] = raw_data;
200 return 1;
201}
202
203uint8_t mysql_parser::parse_cudf_float32(void *src, size_t col, size_t row, std::vector<float> *v)
204{

Callers 1

parse_sqlMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected