(where, options)
| 2260 | } |
| 2261 | |
| 2262 | whereQuery(where, options) { |
| 2263 | const query = this.whereItemsQuery(where, options); |
| 2264 | if (query && query.length) { |
| 2265 | return `WHERE ${query}`; |
| 2266 | } |
| 2267 | return ''; |
| 2268 | } |
| 2269 | |
| 2270 | whereItemsQuery(where, options, binding) { |
| 2271 | if ( |
no test coverage detected