fix: Update a signature to use ParquetFileWithMetadata

pull/24376/head
Carol (Nichols || Goulding) 2022-04-13 11:09:06 -04:00
parent 65b1a83419
commit 8c9b7b501b
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
1 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,7 @@ use crate::{
IngesterConnection,
};
use backoff::{Backoff, BackoffConfig};
use data_types2::{ParquetFile, TableId};
use data_types2::{ParquetFileWithMetadata, TableId};
use observability_deps::tracing::debug;
use predicate::Predicate;
use query::{provider::ChunkPruner, QueryChunk};
@ -256,7 +256,10 @@ impl QuerierTable {
///
/// Specificially, ensure that the persisted number from all
/// chunks is consistent with the parquet files we know about
fn validate_cache(_partitions: &[Arc<IngesterPartition>], _parquet_files: &[ParquetFile]) -> bool {
fn validate_cache(
_partitions: &[Arc<IngesterPartition>],
_parquet_files: &[ParquetFileWithMetadata],
) -> bool {
// TODO fill out the validation logic here
true
}