use crate::arrays::SliceReduceAdaptor;
use crate::arrays::VarBinVTable;
use crate::compute::CastReduceAdaptor;
use crate::expr::MaskReduceAdaptor;
use crate::optimizer::rules::ParentRuleSet;
pub(crate) const PARENT_RULES: ParentRuleSet<VarBinVTable> = ParentRuleSet::new(&[
ParentRuleSet::lift(&CastReduceAdaptor(VarBinVTable)),
ParentRuleSet::lift(&MaskReduceAdaptor(VarBinVTable)),
ParentRuleSet::lift(&SliceReduceAdaptor(VarBinVTable)),
]);