rluvaton commented on PR #6898:
URL: https://github.com/apache/arrow-rs/pull/6898#issuecomment-2551604043
> Why can't you just put a breakpoint on make_array? If you really need to
be in the match block you can step in the debugger?
yes, but I want to view the value that created inside the make array before
casting:
If something create an array with `Int32Type` I debug the created array
value before casting, but I can't as it's immediately passed to arc and casted
```rust
DataType::Int32 => Arc::new(Int32Array::from(data)) as ArrayRef,
```
I want to debug this value `Int32Array::from(data)` for example
--
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]