refactor multiple layer binder context for subquery to resolve duplicate columns, such as: ```sql select * from (select * from t1 where a > 1) t where t.b > 7; select a, t2.v1 as max_b from t1 cross join (select max(b) as v1 from t1) t2; ```