alamb opened a new issue, #9450:
URL: https://github.com/apache/arrow-datafusion/issues/9450
### Describe the bug
When I run `limit.slt` locally it fails like this:
```shell
cargo test --test sqllogictests -- limit
```
```
(venv) andrewlamb@Andrews-MacBook-Pro:~/Software/arrow-datafusion$ cargo
test --test sqllogictests -- limit
...
Finished test [unoptimized + debuginfo] target(s) in 15.35s
Running bin/sqllogictests.rs
(target/debug/deps/sqllogictests-5fa91f6f3736c5fa)
Running "limit.slt"
External error: query result mismatch:
[SQL] EXPLAIN SELECT DISTINCT i FROM t1000;
[Diff] (-expected|+actual)
logical_plan
Aggregate: groupBy=[[t1000.i]], aggr=[[]]
--TableScan: t1000 projection=[i]
physical_plan
AggregateExec: mode=FinalPartitioned, gby=[i@0 as i], aggr=[]
--CoalesceBatchesExec: target_batch_size=8192
----RepartitionExec: partitioning=Hash([i@0], 4), input_partitions=4
------AggregateExec: mode=Partial, gby=[i@0 as i], aggr=[]
- --------MemoryExec: partitions=4, partition_sizes=[1, 2, 1, 1]
+ --------MemoryExec: partitions=4, partition_sizes=[1, 1, 2, 1]
at test_files/limit.slt:392
Error: Execution("1 failures")
error: test failed, to rerun pass `-p datafusion-sqllogictest --test
sqllogictests`
Caused by:
process didn't exit successfully:
`/Users/andrewlamb/Software/arrow-datafusion/target/debug/deps/sqllogictests-5fa91f6f3736c5fa
limit` (exit status: 1)
```
@huaxingao also saw this failure on
https://github.com/apache/arrow-datafusion/pull/9411#issuecomment-1975414500
### To Reproduce
Here is an example failure on CI showing the same failure mode:
https://github.com/apache/arrow-datafusion/actions/runs/8133918181/job/22226135558?pr=9411
### Expected behavior
_No response_
### Additional context
_No response_
--
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]