Search before asking
Description
mysql> explain verbose select count(*) from lineorder where lo_quantity<25;
There are two columns (lo_custkey and lo_quantity) in scan_node plan. However, scan on lo_custkey is unnecessary.
Solution
No response
Are you willing to submit PR?
Code of Conduct