-
Notifications
You must be signed in to change notification settings - Fork 28.4k
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
[SPARK-11673][SQL] Remove the normal Project physical operator (and keep TungstenProject) #9643
Conversation
@@ -176,6 +176,22 @@ case class Invoke( | |||
} | |||
} | |||
|
|||
case class SerializeUsingKryo(child: Expression) extends UnaryExpression { |
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 need to revert this change
cc @davies |
Test build #45684 has finished for PR 9643 at commit
|
…eep TungstenProject) Also make full outer join being able to produce UnsafeRows.
Test build #45706 has finished for PR 9643 at commit
|
should we also remove the |
Test build #2048 has finished for PR 9643 at commit
|
I think so, but usually I find it easier to remove stuff incrementally (due to breaking tests). |
…eep TungstenProject) Also make full outer join being able to produce UnsafeRows. Author: Reynold Xin <[email protected]> Closes #9643 from rxin/SPARK-11673. (cherry picked from commit 30e7433) Signed-off-by: Reynold Xin <[email protected]>
Oops - did anybody review this? I've already merged it. Can somebody take a closer look. Thanks. |
@cloud-fan I think we should keep |
looks good to me |
LGTM |
1 similar comment
LGTM |
…eep TungstenProject) Also make full outer join being able to produce UnsafeRows. Author: Reynold Xin <[email protected]> Closes apache#9643 from rxin/SPARK-11673.
Also make full outer join being able to produce UnsafeRows.