-
Notifications
You must be signed in to change notification settings - Fork 80
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
LazyUpdateTable #2699
LazyUpdateTable #2699
Conversation
@@ -51,8 +51,13 @@ public TableSpec apply(TableSpec spec, String[] formulas) { | |||
public TableSpec apply(TableSpec spec, String[] formulas) { | |||
return spec.select(formulas); | |||
} | |||
}, | |||
LAZY_UPDATE { |
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.
This creates a conflict with your other PR, but you probably know that.
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.
Yep. I'm hoping to get #2635 merged in first, will fix conflicts here.
@@ -166,6 +166,12 @@ | |||
|
|||
// ------------------------------------------------------------------------------------------- | |||
|
|||
TOPS lazyUpdate(String... columns); |
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.
This reminds me that JavaDoc should really make its way up to TableOperations
, but not necessarily in this PR. I think table-api
will never become a tool for new users without that.
Partial #711