File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ import {
5151 provideControlledConnection ,
5252} from './util/provide-controlled-connection.js'
5353import { ConnectionProvider } from './driver/connection-provider.js'
54- import { logOnce } from './util/log-once.js'
5554import { ExecuteOptions } from './util/executable.js'
5655
5756// @ts -ignore
@@ -1185,9 +1184,10 @@ class NotCommittedOrRolledBackAssertingExecutor implements QueryExecutor {
11851184 stream < R > (
11861185 compiledQuery : CompiledQuery < R > ,
11871186 chunkSize : number ,
1187+ options ?: ExecuteQueryOptions ,
11881188 ) : AsyncIterableIterator < QueryResult < R > > {
11891189 assertNotCommittedOrRolledBack ( this . #state)
1190- return this . #executor. stream ( compiledQuery , chunkSize )
1190+ return this . #executor. stream ( compiledQuery , chunkSize , options )
11911191 }
11921192
11931193 withConnectionProvider (
You can’t perform that action at this time.
0 commit comments