()
| 880 | |
| 881 | #[tokio::test] |
| 882 | async fn test_fn_repeat() -> Result<()> { |
| 883 | let expr = repeat(col("a"), lit(2)); |
| 884 | |
| 885 | let batches = get_batches(expr).await?; |
| 886 | |
| 887 | assert_snapshot!( |
| 888 | batches_to_string(&batches), |
| 889 | @r" |
| 890 | +-------------------------+ |
| 891 | | repeat(test.a,Int32(2)) | |
| 892 | +-------------------------+ |
| 893 | | abcDEFabcDEF | |
| 894 | | abc123abc123 | |
| 895 | | CBAdefCBAdef | |
| 896 | | 123AbcDef123AbcDef | |
| 897 | +-------------------------+ |
| 898 | "); |
| 899 | |
| 900 | Ok(()) |
| 901 | } |
| 902 | |
| 903 | #[tokio::test] |
| 904 | #[cfg(feature = "unicode_expressions")] |
nothing calls this directly
no test coverage detected
searching dependent graphs…