| 322 | } |
| 323 | |
| 324 | bool Expression::IsNullLiteral() const { |
| 325 | if (auto lit = literal()) { |
| 326 | if (lit->null_count() == lit->length()) { |
| 327 | return true; |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | return false; |
| 332 | } |
| 333 | |
| 334 | namespace { |
| 335 | std::optional<compute::NullHandling::type> GetNullHandling(const Expression::Call& call) { |
no test coverage detected