-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
regressionSomething that used to work no longer doesSomething that used to work no longer does
Description
// 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.
Metadata
Metadata
Assignees
Labels
regressionSomething that used to work no longer doesSomething that used to work no longer does