matdb 0.1.0

An experimental embedded SQL-like DBMS
Documentation
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,
}