* Check the logging option of the instance and print deprecation warnings. * * @private
()
| 149 | * @private |
| 150 | */ |
| 151 | checkLoggingOption() { |
| 152 | if (this.options.logging === true) { |
| 153 | deprecations.noTrueLogging(); |
| 154 | // eslint-disable-next-line no-console |
| 155 | this.options.logging = console.log; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Get the attributes of an insert query, which contains the just inserted id. |
no outgoing calls
no test coverage detected