-
Notifications
You must be signed in to change notification settings - Fork 28.6k
[SPARK-17830][SQL] Annotate remaining SQL APIs with InterfaceStability #15457
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
Conversation
@@ -19,14 +19,12 @@ | |||
|
|||
import java.io.Serializable; | |||
|
|||
// ************************************************** |
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.
I can't find FunctionRegistration anymore, so deleting this.
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.
+1
public interface UDF1<T1, R> extends Serializable { | ||
public R call(T1 t1) throws Exception; | ||
R call(T1 t1) throws Exception; |
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.
methods in interface in Java are by default public.
Test build #66869 has finished for PR 15457 at commit
|
Test build #66867 has finished for PR 15457 at commit
|
LGTM - pending jenkins |
Test build #66874 has finished for PR 15457 at commit
|
Merging to master. Thanks! |
## What changes were proposed in this pull request? This patch annotates all the remaining APIs in SQL (excluding streaming) with InterfaceStability. ## How was this patch tested? N/A - just annotation change. Author: Reynold Xin <rxin@databricks.com> Closes apache#15457 from rxin/SPARK-17830-2.
## What changes were proposed in this pull request? This patch annotates all the remaining APIs in SQL (excluding streaming) with InterfaceStability. ## How was this patch tested? N/A - just annotation change. Author: Reynold Xin <rxin@databricks.com> Closes apache#15457 from rxin/SPARK-17830-2.
What changes were proposed in this pull request?
This patch annotates all the remaining APIs in SQL (excluding streaming) with InterfaceStability.
How was this patch tested?
N/A - just annotation change.