| 37 | " 64.00 MB default.test_query_log_beeswax_1707938440 "; |
| 38 | |
| 39 | static TExecStats buildExecStats(int64_t latency, int64_t mem_used, |
| 40 | int64_t cardinality) { |
| 41 | TExecStats stat; |
| 42 | |
| 43 | if (latency > -1) { |
| 44 | stat.__set_latency_ns(latency); |
| 45 | } |
| 46 | stat.__set_memory_used(mem_used); |
| 47 | stat.__set_cardinality(cardinality); |
| 48 | |
| 49 | return stat; |
| 50 | } |
| 51 | |
| 52 | static TPlanNodeExecSummary buildPlanNode(TPlanNodeId node_id, TFragmentIdx fragment_idx, |
| 53 | const string& label, const string& detail, int32_t num_hosts, int32_t num_children, |