File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use std::collections::HashMap;
2
2
use std:: sync:: Arc ;
3
3
4
4
use futures:: channel:: mpsc;
5
- use futures:: { StreamExt , TryFutureExt , TryStreamExt } ;
5
+ use futures:: { StreamExt , TryStreamExt } ;
6
6
use tokio:: sync:: watch;
7
7
8
8
use crate :: scan:: { DeleteFileContext , FileScanTaskDeleteFile } ;
Original file line number Diff line number Diff line change @@ -724,12 +724,6 @@ pub enum BoundPredicate {
724
724
Set ( SetExpression < BoundReference > ) ,
725
725
}
726
726
727
- impl BoundPredicate {
728
- pub ( crate ) fn and ( self , other : BoundPredicate ) -> BoundPredicate {
729
- BoundPredicate :: And ( LogicalExpression :: new ( [ Box :: new ( self ) , Box :: new ( other) ] ) )
730
- }
731
- }
732
-
733
727
impl Display for BoundPredicate {
734
728
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> std:: fmt:: Result {
735
729
match self {
You can’t perform that action at this time.
0 commit comments