File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ class _AsyncSessionProtocol(
113
113
Union [Literal [True ], Mapping [str , Any ]]
114
114
] = ...,
115
115
identity_token : Optional [Any ] = ...,
116
+ execution_options : Optional [_ExecuteOptions ] = ...,
116
117
) -> Optional [_T ]: ...
117
118
async def stream (
118
119
self ,
@@ -175,6 +176,7 @@ class _AsyncSessionTypingCommon(
175
176
populate_existing : bool = ...,
176
177
with_for_update : Optional [Any ] = ...,
177
178
identity_token : Optional [Any ] = ...,
179
+ execution_options : Optional [_ExecuteOptions ] = ...,
178
180
) -> Optional [_T ]: ...
179
181
async def merge (
180
182
self ,
Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ class _SessionProtocol(
158
158
Union [Literal [True ], Mapping [str , Any ]]
159
159
] = ...,
160
160
identity_token : Optional [Any ] = ...,
161
+ execution_options : Optional [_ExecuteOptions ] = ...,
161
162
) -> Optional [_T ]: ...
162
163
def merge (
163
164
self ,
@@ -383,6 +384,7 @@ class _SessionTypingCommon(
383
384
Union [Literal [True ], Mapping [str , Any ]]
384
385
] = ...,
385
386
identity_token : Optional [Any ] = ...,
387
+ execution_options : Optional [_ExecuteOptions ] = ...,
386
388
) -> Optional [_T ]: ...
387
389
def bulk_save_objects (
388
390
self ,
You can’t perform that action at this time.
0 commit comments