1 2 3 4 5 6 7 8 9
use crate::ast::Expr; use super::PlanNode; #[derive(Debug)] pub struct Filter { pub child: Box<PlanNode>, pub cond: Expr, }