comphead commented on issue #4103:
URL:
https://github.com/apache/arrow-datafusion/issues/4103#issuecomment-1312589117
Local test to reproduce
```
#[tokio::test]
async fn test_approx_percentile_cont() -> Result<()> {
let ctx = SessionContext::new();
register_aggregate_csv(&ctx).await?;
let sql = "SELECT approx_percentile_cont(c2, cast(1.0 as decimal(10,2)))
FROM aggregate_test_100";
execute_to_batches(&ctx, sql).await;
Ok(())
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]