()
| 348 | |
| 349 | #[test] |
| 350 | fn test_int_decimal_default() { |
| 351 | let plan = logical_plan("SELECT CAST(10 AS DECIMAL)").unwrap(); |
| 352 | assert_snapshot!( |
| 353 | plan, |
| 354 | @r" |
| 355 | Projection: CAST(Int64(10) AS Decimal128(38, 10)) |
| 356 | EmptyRelation: rows=1 |
| 357 | " |
| 358 | ); |
| 359 | } |
| 360 | |
| 361 | #[test] |
| 362 | fn test_int_decimal_no_scale() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…