Skip to content

Commit fc97c20

Browse files
committed
Thread scope dtype through zoned pruning
Signed-off-by: Nicholas Gates <nick@nickgates.com>
1 parent 16f09c1 commit fc97c20

4 files changed

Lines changed: 376 additions & 102 deletions

File tree

vortex-array/src/scalar_fn/fns/like/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,16 +238,16 @@ pub(crate) fn arrow_like(
238238
from_arrow_array_with_len(&result, len, nullable)
239239
}
240240

241-
/// Variants of the LIKE filter that we know how to turn into a stats pruning predicate.s
241+
/// Variants of the LIKE filter that we know how to turn into a stats pruning predicate.
242242
#[derive(Debug, PartialEq)]
243-
enum LikeVariant<'a> {
243+
pub(crate) enum LikeVariant<'a> {
244244
Exact(Cow<'a, str>),
245245
Prefix(Cow<'a, str>),
246246
}
247247

248248
impl<'a> LikeVariant<'a> {
249249
/// Parse a LIKE pattern string into its relevant variant
250-
fn from_str(string: &'a str) -> Option<LikeVariant<'a>> {
250+
pub(crate) fn from_str(string: &'a str) -> Option<LikeVariant<'a>> {
251251
let mut literal = None;
252252
let mut chars = string.char_indices();
253253

0 commit comments

Comments
 (0)