diff --git a/query-engine/driver-adapters/executor/src/recording.ts b/query-engine/driver-adapters/executor/src/recording.ts index 88b9d369bc23..5ac0f52b4cb7 100644 --- a/query-engine/driver-adapters/executor/src/recording.ts +++ b/query-engine/driver-adapters/executor/src/recording.ts @@ -21,7 +21,7 @@ function recorder(adapter: DriverAdapter, recordings: Recordings) { return { provider: adapter.provider, adapterName: adapter.adapterName, - startTransaction: () => { + transactionContext: () => { throw new Error("Not implemented"); }, getConnectionInfo: () => { @@ -43,7 +43,7 @@ function replayer(adapter: DriverAdapter, recordings: Recordings) { provider: adapter.provider, adapterName: adapter.adapterName, recordings: recordings, - startTransaction: () => { + transactionContext: () => { throw new Error("Not implemented"); }, getConnectionInfo: () => {