(ctx context.Context, db *db.Database, name string, args map[string]any)
| 66 | } |
| 67 | |
| 68 | func callUserQuery(ctx context.Context, db *db.Database, name string, args map[string]any) (any, error) { |
| 69 | return db.CallUserFunction(ctx, name, args, false) |
| 70 | } |
| 71 | |
| 72 | func queryResultString(t *testing.T, iter sgbucket.QueryResultIterator) string { |
| 73 | if iter == nil { |
no test coverage detected