You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge?
We want see statistics Min and Max in the query plan to verify whether the plan is optimized correctly. Currently, there are only statistics Rows and Bytes are displayed in the query plan. We want to add Min and Max.
Note that Min and Max go with column. It will be clear if we show column name for the Min and max but since we do not store column names right now, we will also show a list of (min, max) pairs like
Is your feature request related to a problem or challenge?
We want see statistics
Min
andMax
in the query plan to verify whether the plan is optimized correctly. Currently, there are only statisticsRows
andBytes
are displayed in the query plan. We want to addMin
andMax
.Table for the reproducer
Describe the solution you'd like
Note that Min and Max go with column. It will be clear if we show column name for the Min and max but since we do not store column names right now, we will also show a list of (min, max) pairs like
statistics=[Rows=Exact(10), Bytes=Exact(2960), [ (Min=Exact(1), Max=Exact(100)), (Min=Exact(..), Max=Exact(...)), ... ] ]
In the future if there is demand, we will add column names
Here is how they look in my local branch. I will open an PR for this soon
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: