| 20 | static void UpdateFree(OpBase *opBase); |
| 21 | |
| 22 | static Record _handoff(OpUpdate *op) { |
| 23 | /* TODO: popping a record out of op->records |
| 24 | * will reverse the order in which records |
| 25 | * are passed down the execution plan. */ |
| 26 | if(op->records && array_len(op->records) > 0) return array_pop(op->records); |
| 27 | return NULL; |
| 28 | } |
| 29 | |
| 30 | // fake hash function |
| 31 | // hash of key is simply key |
no test coverage detected