| 200 | } |
| 201 | |
| 202 | bool cbdb::ArrayIterate(ArrayIterator iterator, Datum *value, bool *isnull) { |
| 203 | CBDB_WRAP_START; |
| 204 | { return array_iterate(iterator, value, isnull); } |
| 205 | CBDB_WRAP_END; |
| 206 | return false; |
| 207 | } |
| 208 | |
| 209 | void cbdb::ArrayFreeIterator(ArrayIterator iterator) { |
| 210 | CBDB_WRAP_START; |
nothing calls this directly
no test coverage detected