@@ -86,7 +86,6 @@ public async Task GetSchema_WhenTablesWithStatsCollection_ReturnAllTables()
8686 {
8787 tableNames . Remove ( row [ "table_name" ] . ToString ( ) ! ) ;
8888
89- Assert . Equal ( 0UL , row [ "rows_estimate" ] ) ;
9089 Assert . NotNull ( row [ "creation_time" ] ) ;
9190 Assert . Equal ( DBNull . Value , row [ "modification_time" ] ) ;
9291 }
@@ -97,15 +96,13 @@ public async Task GetSchema_WhenTablesWithStatsCollection_ReturnAllTables()
9796 Assert . Equal ( 1 , singleTable1 . Rows . Count ) ;
9897 Assert . Equal ( table1 , singleTable1 . Rows [ 0 ] [ "table_name" ] . ToString ( ) ) ;
9998 Assert . Equal ( "TABLE" , singleTable1 . Rows [ 0 ] [ "table_type" ] . ToString ( ) ) ;
100- Assert . Equal ( 0UL , singleTable1 . Rows [ 0 ] [ "rows_estimate" ] ) ;
10199 Assert . NotNull ( singleTable1 . Rows [ 0 ] [ "creation_time" ] ) ;
102100 Assert . Equal ( DBNull . Value , singleTable1 . Rows [ 0 ] [ "modification_time" ] ) ;
103101
104102 var singleTable2 = await ydbConnection . GetSchemaAsync ( "TablesWithStats" , new [ ] { table2 , null } ) ;
105103 Assert . Equal ( 1 , singleTable2 . Rows . Count ) ;
106104 Assert . Equal ( table2 , singleTable2 . Rows [ 0 ] [ "table_name" ] . ToString ( ) ) ;
107105 Assert . Equal ( "TABLE" , singleTable2 . Rows [ 0 ] [ "table_type" ] . ToString ( ) ) ;
108- Assert . Equal ( 0UL , singleTable2 . Rows [ 0 ] [ "rows_estimate" ] ) ;
109106 Assert . NotNull ( singleTable2 . Rows [ 0 ] [ "creation_time" ] ) ;
110107 Assert . Equal ( DBNull . Value , singleTable2 . Rows [ 0 ] [ "modification_time" ] ) ;
111108
0 commit comments