-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-48638][CONNECT] Add ExecutionInfo support for DataFrame #46996
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
Changes from 1 commit
0b58955
07527aa
de5541a
3e95c96
c85ce1f
a310cda
f08f598
882c12d
f25a9e6
4db1c0f
1588d43
d04636c
84668cb
164342e
08b453e
08e281c
1eb6281
8c68b17
4669827
36ca396
0412ad5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,6 +64,7 @@ | |
| ArrowMapIterFunction, | ||
| DataFrameLike as PandasDataFrameLike, | ||
| ) | ||
| from pyspark.sql.metrics import QueryExecution | ||
|
|
||
|
|
||
| __all__ = ["DataFrame", "DataFrameNaFunctions", "DataFrameStatFunctions"] | ||
|
|
@@ -6281,6 +6282,10 @@ def toPandas(self) -> "PandasDataFrameLike": | |
| """ | ||
| ... | ||
|
|
||
| @property | ||
| def queryExecution(self) -> Optional["QueryExecution"]: | ||
|
||
| ... | ||
|
|
||
|
|
||
| class DataFrameNaFunctions: | ||
| """Functionality for working with missing data in :class:`DataFrame`. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.