From b42784d8a063912d649c6ea906fe5119de73e872 Mon Sep 17 00:00:00 2001 From: Nga Tran Date: Mon, 30 Aug 2021 16:31:59 -0400 Subject: [PATCH] refactor: address review comments --- query/src/provider/overlap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query/src/provider/overlap.rs b/query/src/provider/overlap.rs index da810acc80..f2459c34cf 100644 --- a/query/src/provider/overlap.rs +++ b/query/src/provider/overlap.rs @@ -181,7 +181,7 @@ where fn potential_overlap(&self, other: &Self) -> Result { // This algorithm assumes that the keys are sorted by name (so // they can't appear in different orders on the two sides) except - // the "time"column which is always the last column + // the "time" column which is always the last column debug_assert!(self .key_summaries .windows(2)