(connection, sequelize, options)
| 13 | |
| 14 | export class OracleQuery extends AbstractQuery { |
| 15 | constructor(connection, sequelize, options) { |
| 16 | super(connection, sequelize, options); |
| 17 | this.options = _.extend( |
| 18 | { |
| 19 | logging: console.log, |
| 20 | plain: false, |
| 21 | raw: false |
| 22 | }, |
| 23 | options || {} |
| 24 | ); |
| 25 | |
| 26 | this.checkLoggingOption(); |
| 27 | this.outFormat = options.outFormat || this.sequelize.connectionManager.lib.OBJECT; |
| 28 | } |
| 29 | |
| 30 | getInsertIdField() { |
| 31 | return 'id'; |
nothing calls this directly
no test coverage detected