You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During delta log reading, extracting add.stats_parsed with the wrong StringArray type (on line 82) results in a double stats_parsed column in the result batch.
I've seen this error when trying to read an old table with 10s of thousands of partitions. I started removing old partitions and vacuum/compact and the error went away. Maybe the schema changed at some point or something wrong with the old data. I'm not sure.
Bug
During delta log reading, extracting
add.stats_parsed
with the wrongStringArray
type (on line 82) results in a doublestats_parsed
column in the result batch.delta-rs/crates/core/src/kernel/snapshot/replay.rs
Lines 76 to 89 in eb8c19c
Also, the newly generated
stats_parsed
fromstats
has a different array length than other columns.What you expected to happen:
add.stats_parsed
withStructArray
typestats_parsed
should have a same number of rows as other cols.How to reproduce it:
More details:
The text was updated successfully, but these errors were encountered: