cxzl25 commented on PR #1633: URL: https://github.com/apache/auron/pull/1633#issuecomment-3594516029
https://github.com/apache/auron/actions/runs/19810955183/job/56753360472?pr=1633 ``` error[E0599]: no function or associated item named `from_slice` found for struct `SmallVec<u8, 24>` in the current scope Error: --> native-engine/datafusion-ext-plans/src/agg/agg_hash_map.rs:182:19 | 182 | OwnedKey::from_slice(self) | ^^^^^^^^^^ function or associated item not found in `SmallVec<u8, 24>` | ``` --- ``` https://github.com/servo/rust-smallvec/pull/384 ``` --- ```rust OwnedKey::from_slice(self) ``` -> ```rust OwnedKey::from(self) ``` -- 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]
