(
limit_num_rows: &mut Precision<usize>,
summary_statistics: &mut Statistics,
file_stats: &Statistics,
collect_stats: bool,
)
| 333 | } |
| 334 | |
| 335 | fn seed_first_file_statistics( |
| 336 | limit_num_rows: &mut Precision<usize>, |
| 337 | summary_statistics: &mut Statistics, |
| 338 | file_stats: &Statistics, |
| 339 | collect_stats: bool, |
| 340 | ) { |
| 341 | *limit_num_rows = file_stats.num_rows; |
| 342 | |
| 343 | if collect_stats { |
| 344 | seed_summary_statistics(summary_statistics, file_stats); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | fn merge_file_statistics( |
| 349 | limit_num_rows: &mut Precision<usize>, |
no test coverage detected
searching dependent graphs…