xumingming commented on issue #1665:
URL: https://github.com/apache/auron/issues/1665#issuecomment-3588547538

   > causing explain output to differ from Spark and reducing plan readability 
and diagnosability.
   
   Can you give an example? I try explain, but nothing native in the output:
   
   ```
   spark-sql> explain extended select * from person;
   == Parsed Logical Plan ==
   'Project [*]
   +- 'UnresolvedRelation [person], [], false
   
   == Analyzed Logical Plan ==
   id: int, name: string, address: string
   Project [id#0, name#1, address#2]
   +- SubqueryAlias spark_catalog.default.person
      +- Relation default.person[id#0,name#1,address#2] parquet
   
   == Optimized Logical Plan ==
   Relation default.person[id#0,name#1,address#2] parquet
   
   == Physical Plan ==
   AdaptiveSparkPlan isFinalPlan=false
   +- FileScan parquet default.person[id#0,name#1,address#2] Batched: true, 
DataFilters: [], Format: Parquet, Location: InMemoryFileIndex(1 
paths)PushedFilters: [], ReadSchema: struct<id:int,name:string,address:string>
   
   Time taken: 0.047 seconds, Fetched 1 row(s)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to