xiedeyantu commented on PR #21236: URL: https://github.com/apache/datafusion/pull/21236#issuecomment-4169570253
> Looks like nested derived tables still lose the ambiguity marker after one extra SELECT * wrapper: such as `SELECT age FROM ( SELECT * FROM ( SELECT * FROM t_left JOIN t_right ON t_left.id = t_right.id ) AS s1 ) AS s2;` > > And for join, how about the case `SELECT age FROM (SELECT * FROM t_left JOIN t_right ON t_left.id = t_right.id) sub JOIN seed ON true` @xudong963 Thanks! Good catch, I have fixed this issue and added tests for nested derived tables and subquery JOIN cases. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
