@@ -475,22 +475,6 @@ public async Task BulkUpsertImporter_ThrowsOnNonexistentTable()
475475 await Assert . ThrowsAsync < YdbException > ( async ( ) => { await importer . FlushAsync ( ) ; } ) ;
476476 }
477477
478- [ Fact ]
479- public async Task EnableImplicitSession_WhenTrue_AndNoTransaction_UsesImplicitSession ( )
480- {
481- var cs = ConnectionString + ";EnableImplicitSession=true" ;
482-
483- await using var conn = new YdbConnection ( cs ) ;
484- await conn . OpenAsync ( ) ;
485-
486- var cmd = conn . CreateCommand ( ) ;
487- cmd . CommandText = "SELECT 1" ;
488- var result = Convert . ToInt64 ( await cmd . ExecuteScalarAsync ( ) ) ;
489- Assert . Equal ( 1L , result ) ;
490-
491- Assert . IsType < ImplicitSession > ( conn . Session ) ;
492- }
493-
494478 [ Fact ]
495479 public async Task EnableImplicitSession_WhenTrue_ButInsideTransaction_UsesPooledSession ( )
496480 {
@@ -618,23 +602,6 @@ public async Task ClearPool_FireAndForget_DoesNotBlock_And_PoolsRecreate()
618602 }
619603 }
620604
621- [ Fact ]
622- public async Task EnableImplicitSession_ParallelQueries_WorkFine ( )
623- {
624- var cs = ConnectionString + ";EnableImplicitSession=true" ;
625- await using var conn = new YdbConnection ( cs ) ;
626- await conn . OpenAsync ( ) ;
627-
628- var tasks = Enumerable . Range ( 0 , 16 ) . Select ( async _ =>
629- {
630- using var cmd = conn . CreateCommand ( ) ;
631- cmd . CommandText = "SELECT 1" ;
632- var v = Convert . ToInt64 ( await cmd . ExecuteScalarAsync ( ) ) ;
633- Assert . Equal ( 1L , v ) ;
634- } ) ;
635- await Task . WhenAll ( tasks ) ;
636- }
637-
638605 [ Fact ]
639606 public async Task EnableImplicitSession_WithDisableDiscovery_Works ( )
640607 {
0 commit comments