Calls a user function, returning a query result iterator. If this function does not support iteration, returns nil; then call `Run` instead.
()
| 52 | // Calls a user function, returning a query result iterator. |
| 53 | // If this function does not support iteration, returns nil; then call `Run` instead. |
| 54 | Iterate() (sgbucket.QueryResultIterator, error) |
| 55 | |
| 56 | // Calls a user function, returning the entire result. |
| 57 | // (If this is a N1QL query it will return all the result rows in an array, which is less efficient than iterating them, so try calling `Iterate` first.) |
no outgoing calls