()
| 5 | }; |
| 6 | |
| 7 | var execQuery = function () { |
| 8 | var cb; |
| 9 | var query; |
| 10 | |
| 11 | if (arguments.length == 2) { |
| 12 | query = arguments[0]; |
| 13 | cb = arguments[1]; |
| 14 | } else if (arguments.length == 3) { |
| 15 | query = this.generateQuery(arguments[0], arguments[1]); |
| 16 | cb = arguments[2]; |
| 17 | } |
| 18 | return this.execSimpleQuery(query, cb); |
| 19 | }; |
| 20 | |
| 21 | var eagerQuery = function (association, opts, keys, cb) { |
| 22 | var desiredKey = Object.keys(association.field); |
nothing calls this directly
no outgoing calls
no test coverage detected