-
Notifications
You must be signed in to change notification settings - Fork 425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: generated columns #3123
base: main
Are you sure you want to change the base?
feat: generated columns #3123
Conversation
be67624
to
e3f55b7
Compare
6efe64b
to
18a3db8
Compare
4378bd9
to
173659c
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3123 +/- ##
==========================================
- Coverage 72.28% 72.13% -0.15%
==========================================
Files 134 134
Lines 42973 43262 +289
Branches 42973 43262 +289
==========================================
+ Hits 31062 31209 +147
- Misses 9923 10042 +119
- Partials 1988 2011 +23 ☔ View full report in Codecov by Sentry. |
91633d3
to
5fd0b6d
Compare
@@ -439,7 +438,11 @@ async fn write_execution_plan_with_predicate( | |||
let checker = if let Some(snapshot) = snapshot { | |||
DeltaDataChecker::new(snapshot) | |||
} else { | |||
DeltaDataChecker::empty() | |||
debug!("Using plan schema to derive generated columns, since no shapshot was provided. Implies first write."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A cleaner way maybe, is to check upstream whether an metadata action existed, then we convert that schema into StructType and grab the generated columns from there
Signed-off-by: Ion Koutsouris <[email protected]>
Signed-off-by: Ion Koutsouris <[email protected]>
Signed-off-by: Ion Koutsouris <[email protected]>
Signed-off-by: Ion Koutsouris <[email protected]>
…te/create Signed-off-by: Ion Koutsouris <[email protected]>
Signed-off-by: Ion Koutsouris <[email protected]>
c12d5e1
to
d541160
Compare
Description
Adds generated columns.
Related Issue(s)