(field, model, tableName, options)
| 1583 | } |
| 1584 | |
| 1585 | aliasGrouping(field, model, tableName, options) { |
| 1586 | const src = Array.isArray(field) ? field[0] : field; |
| 1587 | |
| 1588 | return this.quote(this._getAliasForField(tableName, src, options) || src, model); |
| 1589 | } |
| 1590 | |
| 1591 | escapeAttributes(attributes, options, mainTableAs) { |
| 1592 | return attributes && attributes.map(attr => { |
no test coverage detected