string representation of operation
| 20 | |
| 21 | // string representation of operation |
| 22 | static inline void ExpandIntoToString |
| 23 | ( |
| 24 | const OpBase *ctx, |
| 25 | sds *buf |
| 26 | ) { |
| 27 | TraversalToString(ctx, buf, ((const OpExpandInto *)ctx)->ae); |
| 28 | } |
| 29 | |
| 30 | // construct filter matrix F |
| 31 | // F[i,j] = 1 if row the ith record ID(src) = j |
nothing calls this directly
no test coverage detected