Skip to content

Commit

Permalink
chore(driver-adapters): fix types in executor
Browse files Browse the repository at this point in the history
  • Loading branch information
jkomyno committed Jul 24, 2024
1 parent c926163 commit 37337e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query-engine/driver-adapters/executor/src/recording.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: () => {
Expand All @@ -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: () => {
Expand Down

0 comments on commit 37337e0

Please sign in to comment.