richox commented on code in PR #1979:
URL: https://github.com/apache/auron/pull/1979#discussion_r2752879807
##########
native-engine/datafusion-ext-plans/src/agg/bloom_filter.rs:
##########
@@ -274,8 +274,11 @@ impl AccColumn for AccBloomFilterColumn {
for v in array {
if let Some(w) = v {
+ let mut cursor = Cursor::new(w);
+ // Skip the 1-byte marker written by freeze_to_arrays
+ cursor.read_u8()?;
Review Comment:
and we dont have to skip this byte reading
--
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]