-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-8787][SQL]Changed parameter order of @deprecated in package object sql #7183
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
|
Can one of the admins verify this patch? |
|
ok to test. |
|
Merged build triggered. |
|
Merged build started. |
|
Test build #36374 has started for PR 7183 at commit |
|
Thanks for reporting this issue @vinodkc. Could you add a brief description? |
|
Added description |
|
Thanks. I'll merge this once the test pass. |
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.
Could you put the warning message just like "Use DataFrame" as with any other warning messages.
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.
Updated the message to "use DataFrame"
|
Test build #36374 has finished for PR 7183 at commit
|
|
Merged build finished. Test PASSed. |
|
Merged build triggered. |
|
Merged build started. |
|
Test build #36387 has started for PR 7183 at commit |
|
Test build #36387 has finished for PR 7183 at commit
|
|
Merged build finished. Test PASSed. |
…object sql
Parameter order of deprecated annotation in package object sql is wrong
>>deprecated("1.3.0", "use DataFrame") .
This has to be changed to deprecated("use DataFrame", "1.3.0")
Author: Vinod K C <vinod.kc@huawei.com>
Closes #7183 from vinodkc/fix_deprecated_param_order and squashes the following commits:
1cbdbe8 [Vinod K C] Modified the message
700911c [Vinod K C] Changed order of parameters
(cherry picked from commit c572e25)
Signed-off-by: Sean Owen <sowen@cloudera.com>
Parameter order of @deprecated annotation in package object sql is wrong
This has to be changed to deprecated("use DataFrame", "1.3.0")