()
| 566 | |
| 567 | #[mz_ore::test] |
| 568 | fn test_could_error() { |
| 569 | for func in [ |
| 570 | UnaryFunc::IsNull(IsNull), |
| 571 | UnaryFunc::CastVarCharToString(CastVarCharToString), |
| 572 | UnaryFunc::Not(Not), |
| 573 | UnaryFunc::IsLikeMatch(IsLikeMatch(like_pattern::compile("%hi%", false).unwrap())), |
| 574 | ] { |
| 575 | assert!(!func.could_error()) |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | #[mz_ore::test] |
| 580 | #[cfg_attr(miri, ignore)] // unsupported operation: can't call foreign function `decNumberFromInt32` on OS `linux` |
nothing calls this directly
no test coverage detected