(where, options)
| 2437 | } |
| 2438 | |
| 2439 | whereQuery(where, options) { |
| 2440 | const query = this.whereItemsQuery(where, options); |
| 2441 | if (query && query.length) { |
| 2442 | return `WHERE ${query}`; |
| 2443 | } |
| 2444 | return ''; |
| 2445 | } |
| 2446 | |
| 2447 | whereItemsQuery(where, options, binding) { |
| 2448 | if ( |
no test coverage detected