File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ DECLARE $val AS UUID;
263263
264264SELECT CAST($val AS Utf8)` ,
265265 query .WithIdempotent (),
266+ query .WithTxControl (query .SerializableReadWriteTxControl ()),
266267 query .WithParameters (ydb .ParamsBuilder ().Param ("$val" ).Uuid (id ).Build ()),
267268 )
268269
@@ -288,6 +289,7 @@ DECLARE $val AS Utf8;
288289SELECT CAST($val AS UUID)` ,
289290 query .WithIdempotent (),
290291 query .WithParameters (ydb .ParamsBuilder ().Param ("$val" ).Text (idString ).Build ()),
292+ query .WithTxControl (query .SerializableReadWriteTxControl ()),
291293 )
292294
293295 require .NoError (t , err )
@@ -315,6 +317,7 @@ DECLARE $val AS UUID;
315317SELECT $val` ,
316318 query .WithIdempotent (),
317319 query .WithParameters (ydb .ParamsBuilder ().Param ("$val" ).Uuid (id ).Build ()),
320+ query .WithTxControl (query .SerializableReadWriteTxControl ()),
318321 )
319322
320323 require .NoError (t , err )
You can’t perform that action at this time.
0 commit comments