()
| 372 | |
| 373 | #[test] |
| 374 | fn test_tinyint() { |
| 375 | let plan = logical_plan("SELECT CAST(6 AS TINYINT)").unwrap(); |
| 376 | assert_snapshot!( |
| 377 | plan, |
| 378 | @r" |
| 379 | Projection: CAST(Int64(6) AS Int8) |
| 380 | EmptyRelation: rows=1 |
| 381 | " |
| 382 | ); |
| 383 | } |
| 384 | |
| 385 | #[test] |
| 386 | fn cast_from_subquery() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…