(&self)
| 330 | |
| 331 | impl 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 | |
| 341 | impl WindowFrameBound { |
no test coverage detected