strongduanmu commented on issue #21198: URL: https://github.com/apache/shardingsphere/issues/21198#issuecomment-1257908842
I have test with following sql, but I can't reproduce this exception. ```sql CREATE TABLE t_order(order_id INT, user_id INT, status VARCHAR); INSERT INTO t_order(order_id, user_id, status) VALUES(1, 1, 'init'), (2, 2, 'init'), (3, 3, 'init'); CREATE TABLE t_order_item(item_id INT, order_id INT, user_id INT, status VARCHAR); INSERT INTO t_order_item(item_id, order_id, user_id, status) VALUES(1, 1, 1, 'init'), (2, 2, 2, 'init'), (3, 3, 3, 'init'); select t_order.*, t_order_item.* from t_order,t_order_item where t_order.order_id = t_order_item.item_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]
