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
We have introduced the view in #645 but there are some column limitations for it. Currently, we query the complex expression with the alias name in the view. The followed SQL isn't valid:
select order_id, sum(price) fromwrenai.public.order_items group by order_id
It should be
select order_id, sum(price) as sum_price fromwrenai.public.order_items group by order_id
Description
We have introduced the view in #645 but there are some column limitations for it. Currently, we query the complex expression with the alias name in the view. The followed SQL isn't valid:
It should be
There're some todo case that should be enabled:
wren-engine/wren-modeling-rs/sqllogictest/src/test_context.rs
Lines 261 to 262 in daf5a60
The text was updated successfully, but these errors were encountered: