|
|
|
@ -79,11 +79,9 @@ public class TestCaseUtils { |
|
|
|
|
"from information_schema.system_tables " + |
|
|
|
|
"where table_name not like 'SYSTEM%'" |
|
|
|
|
, String.class); |
|
|
|
|
Map<String, Integer> nbRecords = |
|
|
|
|
tableNames.stream() |
|
|
|
|
.collect(Collectors.toMap(table -> table, table -> recordsInTable(table,daoHelper))); |
|
|
|
|
|
|
|
|
|
return nbRecords; |
|
|
|
|
return tableNames.stream() |
|
|
|
|
.collect(Collectors.toMap(table -> table, table -> recordsInTable(table,daoHelper))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|