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
Doing an append specifying new min/max stats fails in some cases.
In particular, I have identified two cases where the new columnStats are not being updated accordingly:
table indexed by 2 columns: age: Integer, val2: integer, appending with new column stats on column age. Throws error about missing val2 column.
table indexed by 2 columns: age: Integer, name: String, appending with new column stats on column age. New revision is not created.
// DOES NOT THROW ERROR, but it does not create new revisionvalnames=List("age,name")
valstats_init_write="""{ "age_min": 0, "age_max": 20 }"""valstats_append="""{ "age_min": 5, "age_max": 30 }"""
What went wrong?
Doing an append specifying new min/max stats fails in some cases.
In particular, I have identified two cases where the new columnStats are not being updated accordingly:
age: Integer, val2: integer
, appending with new column stats on column age. Throws error about missing val2 column.age: Integer, name: String
, appending with new column stats on column age. New revision is not created.How to reproduce?
Full example to reproduce
2. Branch and commit id:
main branch
3. Spark version:
3.2.3
4. Hadoop version:
3.2.3
The text was updated successfully, but these errors were encountered: