risinglight icon indicating copy to clipboard operation
risinglight copied to clipboard

`select *` panic in subquery

Open skyzh opened this issue 7 months ago • 3 comments

> create table t1(v1 int, v2 int);
> explain select * from (select v1 + v1 as v3 from t1) as left;
thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', src/planner/rules/plan.rs:266:51
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

skyzh avatar Dec 03 '23 23:12 skyzh