use vortex_array::arrays::SliceReduceAdaptor;
use vortex_array::compute::CastReduceAdaptor;
use vortex_array::optimizer::rules::ParentRuleSet;
use crate::PcoVTable;
pub(crate) static RULES: ParentRuleSet<PcoVTable> = ParentRuleSet::new(&[
ParentRuleSet::lift(&SliceReduceAdaptor(PcoVTable)),
ParentRuleSet::lift(&CastReduceAdaptor(PcoVTable)),
]);