CrackerSuperior opened a new issue #12611: URL: https://github.com/apache/shardingsphere/issues/12611
Why are SQL execution results different? By rights, these two SQL results should be the same. My version is 5.0.0-beta. SQL 1: ``` sql mysql> select EVTSN from acct_retn_evt_c limit 5; +---------+ | EVTSN | +---------+ | 8673633 | | 4288503 | | 3150255 | | 5586885 | | 7989813 | +---------+ 5 rows in set (0.01 sec) ``` SQL 2 : ```sql mysql> select t.EVTSN from (select * from acct_retn_evt_c limit 5) as t; +---------+ | EVTSN | +---------+ | 8673633 | | 7989813 | | 8985855 | | 8319346 | | 3940432 | | 4288503 | | 515120 | | 8814116 | | 2362388 | | 4445725 | | 3150255 | | 5732529 | | 6555199 | | 1239401 | | 358936 | | 5586885 | | 8843936 | | 4457043 | | 3185153 | | 9137463 | +---------+ 20 rows in set (0.01 sec) ``` -- 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]
