-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SQL] Add toString to DataFrame/Column #4436
Conversation
Test build #26944 has finished for PR 4436 at commit
|
Test build #593 has finished for PR 4436 at commit
|
Test build #27056 has finished for PR 4436 at commit
|
test this please |
Test build #27059 has finished for PR 4436 at commit
|
Test build #27063 has finished for PR 4436 at commit
|
test this please |
Test build #27067 has finished for PR 4436 at commit
|
Test build #595 has finished for PR 4436 at commit
|
test this please |
Test build #27145 has finished for PR 4436 at commit
|
sigh... test this please |
Test build #27162 has finished for PR 4436 at commit
|
Conflicts: python/pyspark/sql.py
Test build #27219 has finished for PR 4436 at commit
|
Author: Michael Armbrust <[email protected]> Closes #4436 from marmbrus/dfToString and squashes the following commits: 8a3c35f [Michael Armbrust] Merge remote-tracking branch 'origin/master' into dfToString b72a81b [Michael Armbrust] add toString (cherry picked from commit de80b1b) Signed-off-by: Michael Armbrust <[email protected]>
* debugging information like the expression id. | ||
*/ | ||
def prettyString: String = { | ||
transform { |
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.
why use transform here? this will change the expression
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.
We only replace some leaf nodes in the expression tree, does it cause problems?
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.
no, i am going through the code, and i think we'd better not use transform here. in which case we need change the expression?
No description provided.