(serializedMutation: SerializedMutation, transaction: knexlib.Knex.Transaction | SQLiteTransaction)
| 143 | } |
| 144 | |
| 145 | async commitChange(serializedMutation: SerializedMutation, transaction: knexlib.Knex.Transaction | SQLiteTransaction): Promise<void> { |
| 146 | await this.ensureConnected() |
| 147 | if (!this.wrappedEngine) throw new Error('Not connected') |
| 148 | return this.wrappedEngine.commitChange(serializedMutation, transaction as knexlib.Knex.Transaction) |
| 149 | } |
| 150 | |
| 151 | async getVersion(): Promise<string | undefined> { |
| 152 | await this.ensureConnected() |
nothing calls this directly
no test coverage detected