alamb commented on issue #9148:
URL:
https://github.com/apache/arrow-datafusion/issues/9148#issuecomment-1932255023
This is consistent on my more limited linux machine too:
```
alamb@aal-dev:~/rust_playground$ cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.10s
Running `target/debug/rust_playground`
just before df -> 0
reading df -> 2
df aggregation -> 2758
results -> Ok([RecordBatch { schema: Schema { fields: [Field { name:
"SUM(?table?.trip_time)", data_type: Int64, nullable: true, dict_id: 0,
dict_is_ordered: false, metadata: {} }], metadata: {} }, columns:
[PrimitiveArray<Int64>
[
20227776240,
]], row_count: 1 }])
alamb@aal-dev:~/rust_playground$
```
```
alamb@aal-dev:~/rust_playground$ cargo build --release
Finished release [optimized] target(s) in 0.11s
alamb@aal-dev:~/rust_playground$ cargo run --release
Finished release [optimized] target(s) in 0.10s
Running `target/release/rust_playground`
just before df -> 0
reading df -> 0
df aggregation -> 185
results -> Ok([RecordBatch { schema: Schema { fields: [Field { name:
"SUM(?table?.trip_time)", data_type: Int64, nullable: true, dict_id: 0,
dict_is_ordered: false, metadata: {} }], metadata: {} }, columns:
[PrimitiveArray<Int64>
[
20227776240,
]], row_count: 1 }])
```
--
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]