Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sql/core/src/main/java/org/apache/spark/sql/ExplainMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ public enum ExplainMode {
*/
Extended,
/**
* Extended mode means that when printing explain for a DataFrame, if generated codes are
* Codegen mode means that when printing explain for a DataFrame, if generated codes are
* available, a physical plan and the generated codes are expected to be printed to the console.
*
* @since 3.0.0
*/
Codegen,
/**
* Extended mode means that when printing explain for a DataFrame, if plan node statistics are
* Cost mode means that when printing explain for a DataFrame, if plan node statistics are
* available, a logical plan and the statistics are expected to be printed to the console.
*
* @since 3.0.0
Expand Down