refactor: rename deduplicate --> overlap (#1779)

pull/24376/head
Andrew Lamb 2021-06-22 13:07:53 -04:00 committed by GitHub
parent 0024f933df
commit 763ade390c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View File

@ -16,7 +16,6 @@ use predicate::PredicateMatch;
use std::{fmt::Debug, sync::Arc};
pub mod duplicate;
pub mod exec;
pub mod frontend;
pub mod func;

View File

@ -20,7 +20,6 @@ use internal_types::schema::{merge::SchemaMerger, Schema};
use observability_deps::tracing::debug;
use crate::{
duplicate::group_potential_duplicates,
predicate::{Predicate, PredicateBuilder},
util::arrow_pk_sort_exprs,
QueryChunk,
@ -30,8 +29,11 @@ use snafu::{ResultExt, Snafu};
mod adapter;
mod deduplicate;
mod overlap;
mod physical;
use self::{deduplicate::DeduplicateExec, physical::IOxReadFilterNode};
use self::{
deduplicate::DeduplicateExec, overlap::group_potential_duplicates, physical::IOxReadFilterNode,
};
#[derive(Debug, Snafu)]
pub enum Error {
@ -66,7 +68,7 @@ pub enum Error {
},
#[snafu(display("Internal error: Can not group chunks '{}'", source,))]
InternalChunkGrouping { source: crate::duplicate::Error },
InternalChunkGrouping { source: self::overlap::Error },
}
pub type Result<T, E = Error> = std::result::Result<T, E>;