| 32 | } CdbExplain_Agg; |
| 33 | |
| 34 | static inline void |
| 35 | cdbexplain_agg_init0(CdbExplain_Agg *agg) |
| 36 | { |
| 37 | agg->vmax = 0; |
| 38 | agg->vsum = 0; |
| 39 | agg->vcnt = 0; |
| 40 | agg->imax = 0; |
| 41 | } |
| 42 | |
| 43 | static inline bool |
| 44 | cdbexplain_agg_upd(CdbExplain_Agg *agg, double v, int id) |
no outgoing calls
no test coverage detected