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

Method is_ever_expanding

datafusion/expr/src/window_frame.rs:295–297  ·  view source on GitHub ↗

Is the window frame ever-expanding (it always grows in the superset sense). Useful when understanding if set-monotonicity properties of functions can be exploited.

(&self)

Source from the content-addressed store, hash-verified

293 /// Useful when understanding if set-monotonicity properties of functions can
294 /// be exploited.
295 pub fn is_ever_expanding(&self) -> bool {
296 self.start_bound.is_unbounded()
297 }
298}
299
300/// There are five ways to describe starting and ending frame boundaries:

Callers 3

get_reverse_exprMethod · 0.80
get_reverse_exprMethod · 0.80

Calls 1

is_unboundedMethod · 0.45

Tested by

no test coverage detected