Should I only use partition columns inside predicate with mode="overwrite" & engine="rust"? #2487
Unanswered
nmishturak-gl
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, I have two INT partition columns
TypeId, Year
as well as INTGroupId
(non-partitioned).I'm trying to add new data / replace existing by these three columns with a predicate.
It seems to add new data for
TypeId=30, Year=2024,GroupId=123
andTypeId=20, Year=2024,GroupId=123
(both get 152 rows).But when I try to replace data for
TypeId=30, Year=2024,GroupId=123
the number of rows increases, and the old data is not overwritten. Instead it's added back for some reason.Here how parts of the log looks like
Do I have to use
overwrite
/replaceWhere
only for entire partitions?Beta Was this translation helpful? Give feedback.
All reactions