MCPcopy Create free account
hub / github.com/apache/datafusion / is_unbounded

Method is_unbounded

datafusion/expr/src/window_frame.rs:332–338  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

330
331impl WindowFrameBound {
332 pub fn is_unbounded(&self) -> bool {
333 match self {
334 WindowFrameBound::Preceding(elem) => elem.is_null(),
335 WindowFrameBound::CurrentRow => false,
336 WindowFrameBound::Following(elem) => elem.is_null(),
337 }
338 }
339}
340
341impl WindowFrameBound {

Callers 3

free_rangeMethod · 0.45
is_ever_expandingMethod · 0.45
executeMethod · 0.45

Calls 1

is_nullMethod · 0.45

Tested by

no test coverage detected