zhangshenghang commented on PR #10093:
URL: https://github.com/apache/seatunnel/pull/10093#issuecomment-3581157467
Hi, complex SQL like this also needs to be tested in e2e to ensure its
robustness.
```sql
SELECT
o.order_id,
u.id,
u.user_name,
u.city,
o.order_date,
o.total_amount as order_total,
oi.quantity,
oi.unit_price,
p.product_name,
p.category
FROM orders o
INNER JOIN users u ON o.user_id = u.id
INNER JOIN order_items oi ON o.order_id = oi.order_id
INNER JOIN products p ON oi.product_id = p.product_id
WHERE o.status = 'completed'
AND o.order_date >= '2023-01-01'
```
--
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]