andygrove opened a new issue #623:
URL: https://github.com/apache/arrow-datafusion/issues/623
**Describe the bug**
When running `./dev/integration-tests.sh` I see:
```
Running benchmarks with the following options: BallistaBenchmarkOpt { query:
1, debug: true, iterations: 1, batch_size: 8192, path: "/data", file_format:
"tbl", mem_table: false, partitions: 8, host: Some("ballista-scheduler"), port:
Some(50050) }
Running benchmark with query 1:
select
l_returnflag,
l_linestatus,
sum(l_quantity) as sum_qty,
sum(l_extendedprice) as sum_base_price,
sum(l_extendedprice * (1 - l_discount)) as sum_disc_price,
sum(l_extendedprice * (1 - l_discount) * (1 + l_tax)) as sum_charge,
avg(l_quantity) as avg_qty,
avg(l_extendedprice) as avg_price,
avg(l_discount) as avg_disc,
count(*) as count_order
from
lineitem
where
l_shipdate <= date '1998-09-02'
group by
l_returnflag,
l_linestatus
order by
l_returnflag,
l_linestatus;
[2021-06-26T13:53:07Z INFO ballista::context] Connecting to Ballista
scheduler at http://ballista-scheduler:50050
Error: Plan("Execution(\"Status { code: Internal, message: \\\"Could not
parse logical plan protobuf: DataFusion error: Plan(\\\\\\\"No field named
'lineitem.l_returnflag'\\\\\\\")\\\", metadata: MetadataMap { headers:
{\\\"content-type\\\": \\\"application/grpc\\\", \\\"date\\\": \\\"Sat, 26 Jun
2021 13:53:07 GMT\\\"} } }\")")
```
**To Reproduce**
```
./dev/integration-tests.sh
```
**Expected behavior**
Queries should run without error.
**Additional context**
None
--
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]