()
| 606 | |
| 607 | #[test] |
| 608 | fn test_decimal_equal() { |
| 609 | let a = create_decimal_array(vec![Some(8_887_000_000), Some(-8_887_000_000)]); |
| 610 | let b = create_decimal_array(vec![Some(8_887_000_000), Some(-8_887_000_000)]); |
| 611 | test_equal(&a, &b, true); |
| 612 | |
| 613 | let b = create_decimal_array(vec![Some(15_887_000_000), Some(-8_887_000_000)]); |
| 614 | test_equal(&a, &b, false); |
| 615 | } |
| 616 | |
| 617 | // Test the case where null_count > 0 |
| 618 | #[test] |
nothing calls this directly
no test coverage detected