From 37337e006d6c848397877d54e23874ef02f3155a Mon Sep 17 00:00:00 2001 From: jkomyno Date: Wed, 24 Jul 2024 17:38:52 +0200 Subject: [PATCH] chore(driver-adapters): fix types in executor --- query-engine/driver-adapters/executor/src/recording.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: () => {