xiangfu0 commented on PR #10421: URL: https://github.com/apache/pinot/pull/10421#issuecomment-1483696373
how do you think we can model a lateral unnest? E.g. SELECT o.order_id, o.customer_id, p.id AS product_id, p.name, p.price FROM orders o, LATERAL unnest(o.product_ids) AS product_id JOIN products p ON p.id = product_id; -- 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]
