File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 66
77namespace Ydb . Sdk . Tests . Ado ;
88
9- [ CollectionDefinition ( "YdbSchemaTests isolation test" , DisableParallelization = true ) ]
10- [ Collection ( "YdbSchemaTests isolation test" ) ]
119public class YdbSchemaTests : YdbAdoNetFixture
1210{
1311 private readonly string _table1 ;
@@ -47,10 +45,6 @@ public async Task GetSchema_WhenTablesCollection_ReturnAllTables()
4745 Assert . Equal ( _table2 , singleTable2 . Rows [ 0 ] [ "table_name" ] . ToString ( ) ) ;
4846 Assert . Equal ( "TABLE" , singleTable2 . Rows [ 0 ] [ "table_type" ] . ToString ( ) ) ;
4947
50- var userTables = await ydbConnection . GetSchemaAsync ( "Tables" , new [ ] { null , "TABLE" } ) ;
51- Assert . Equal ( 3 , userTables . Rows . Count ) ;
52-
53- // not found case
5448 await Assert . ThrowsAsync < YdbException > (
5549 async ( ) => await ydbConnection . GetSchemaAsync ( "Tables" , new [ ] { "not_found" , null } )
5650 ) ;
You can’t perform that action at this time.
0 commit comments