xudong963 opened a new issue, #17513:
URL: https://github.com/apache/datafusion/issues/17513

   ```
   // t1 contains a,b
   DF49
   > explain select from t1 where t1.a > 1;
   +--------------+----------------------------------+
   | plan_type    | plan                             |
   +--------------+----------------------------------+
   | logical_plan | Projection:                      |
   |              |   Filter: t1.a > Int32(1)        |
   |              |     TableScan: t1 projection=[a] |
   +--------------+----------------------------------+
   1 row(s) fetched.
   Elapsed 0.004 seconds.
   
   DF50
   > explain select from t1 where t1.a > 1;
   +--------------+-----------------------------------+
   | plan_type    | plan                              |
   +--------------+-----------------------------------+
   | logical_plan | Filter: t1.a > Int32(1)           |
   |              |   TableScan: t1 projection=[a, b] |
   +--------------+-----------------------------------+
   1 row(s) fetched.
   Elapsed 0.003 seconds.
   ```


-- 
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: github-unsubscr...@datafusion.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to