Skip to content

Commit 064b5b0

Browse files
perf[expr]: between not fallible (#5798)
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 9159495 commit 064b5b0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vortex-array/src/expr/exprs/between.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,10 @@ impl VTable for Between {
209209
fn is_null_sensitive(&self, _instance: &Self::Options) -> bool {
210210
false
211211
}
212+
213+
fn is_fallible(&self, _options: &Self::Options) -> bool {
214+
false
215+
}
212216
}
213217

214218
/// Creates an expression that checks if values are between two bounds.

0 commit comments

Comments
 (0)