()
| 360 | |
| 361 | #[test] |
| 362 | fn test_int_decimal_no_scale() { |
| 363 | let plan = logical_plan("SELECT CAST(10 AS DECIMAL(5))").unwrap(); |
| 364 | assert_snapshot!( |
| 365 | plan, |
| 366 | @r" |
| 367 | Projection: CAST(Int64(10) AS Decimal128(5, 0)) |
| 368 | EmptyRelation: rows=1 |
| 369 | " |
| 370 | ); |
| 371 | } |
| 372 | |
| 373 | #[test] |
| 374 | fn test_tinyint() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…