MCPcopy Create free account
hub / github.com/ByConity/ByConity / getFloat64

Function getFloat64

src/Statistics/AutoStatsTaskLogHelper.cpp:38–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38static inline Float64 getFloat64(const ColumnPtr & col_base, UInt64 row)
39{
40 union
41 {
42 Float64 f64;
43 UInt64 i64;
44 } x;
45 x.i64 = col_base->get64(row);
46 return x.f64;
47}
48
49std::vector<TaskInfoLog> batchReadTaskLog(ContextPtr context, DateTime64 min_event_time)
50{

Callers 1

batchReadTaskLogFunction · 0.85

Calls 1

get64Method · 0.45

Tested by

no test coverage detected