| 36 | } |
| 37 | |
| 38 | static 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 | |
| 49 | std::vector<TaskInfoLog> batchReadTaskLog(ContextPtr context, DateTime64 min_event_time) |
| 50 | { |
no test coverage detected