codephage2020 opened a new issue, #9492:
URL: https://github.com/apache/arrow-rs/issues/9492
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
There are two identical macro_rules! definitions with the same name
partially_shredded_variant_array_gen in the same test module scope in
parquet-variant-compute/src/variant_get.rs.
1. **Line 466-507:**
```rust
macro_rules! partially_shredded_variant_array_gen {
($func_name:ident, $typed_value_array_gen: expr) => {
fn $func_name() -> ArrayRef {
// ... implementation
}
};
}
```
2. **Line 1677-1721:**
```rust
macro_rules! partially_shredded_variant_array_gen {
($func:ident, $typed_array_gen: expr) => {
fn $func() -> ArrayRef {
// ... implementation with extra comments
}
};
}
```
**Describe the solution you'd like**
Remove the first macro definition (lines 466-507) and keep the second one
(lines 1677-1721).
--
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]