(first, rest, parameters, types, options)
| 162 | '\\(': select, |
| 163 | |
| 164 | update(first, rest, parameters, types, options) { |
| 165 | return (rest.length ? rest.flat() : Object.keys(first)).map(x => |
| 166 | escapeIdentifier(options.transform.column.to ? options.transform.column.to(x) : x) + |
| 167 | '=' + stringifyValue('values', first[x], parameters, types, options) |
| 168 | ) |
| 169 | }, |
| 170 | |
| 171 | insert(first, rest, parameters, types, options) { |
| 172 | const columns = rest.length ? rest.flat() : Object.keys(Array.isArray(first) ? first[0] : first) |
nothing calls this directly
no test coverage detected