(field, model, tableName, options)
| 1455 | } |
| 1456 | |
| 1457 | aliasGrouping(field, model, tableName, options) { |
| 1458 | const src = Array.isArray(field) ? field[0] : field; |
| 1459 | |
| 1460 | return this.quote(this._getAliasForField(tableName, src, options) || src, model); |
| 1461 | } |
| 1462 | |
| 1463 | escapeAttributes(attributes, options, mainTableAs) { |
| 1464 | return attributes && attributes.map(attr => { |
no test coverage detected