Open universalmind303 opened 2 weeks ago
constant exprs can and should be evaluated during compile (planning).
ex where some_column > (1+1)
where some_column > (1+1)
in this example, 1 + 1 is a constant expression and can optimized to where some_column > 2
1 + 1
where some_column > 2
No response
Yes
Is your feature request related to a problem?
constant exprs can and should be evaluated during compile (planning).
Describe the solution you'd like
ex
where some_column > (1+1)
in this example,
1 + 1
is a constant expression and can optimized towhere some_column > 2
Describe alternatives you've considered
No response
Additional Context
No response
Would you like to implement a fix?
Yes