| 65 | } |
| 66 | |
| 67 | static OpResult CartesianProductInit(OpBase *opBase) { |
| 68 | CartesianProduct *op = (CartesianProduct *)opBase; |
| 69 | op->r = OpBase_CreateRecord((OpBase *)op); |
| 70 | return OP_OK; |
| 71 | } |
| 72 | |
| 73 | static Record CartesianProductConsume(OpBase *opBase) { |
| 74 | CartesianProduct *op = (CartesianProduct *)opBase; |
nothing calls this directly
no test coverage detected