vortex-onpair 0.74.0

Vortex OnPair string array encoding (dict-12, pushdown predicates)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::arrays::slice::SliceReduceAdaptor;
use vortex_array::optimizer::rules::ParentRuleSet;
use vortex_array::scalar_fn::fns::cast::CastReduceAdaptor;

use crate::OnPair;

pub(crate) static RULES: ParentRuleSet<OnPair> = ParentRuleSet::new(&[
    ParentRuleSet::lift(&SliceReduceAdaptor(OnPair)),
    ParentRuleSet::lift(&CastReduceAdaptor(OnPair)),
]);