dataalive commented on issue #8465: URL: https://github.com/apache/incubator-doris/issues/8465#issuecomment-1066540609
with enable_vectorized_engine is true , it turns out right ``` MySQL [dafeng]> select max(c_nation) as min_c_nation from customer ; +--------------+ | min_c_nation | +--------------+ | VIETNAM | +--------------+ 1 row in set (0.26 sec) MySQL [dafeng]> select min(c_nation) as min_c_nation from customer ; +--------------+ | min_c_nation | +--------------+ | | +--------------+ 1 row in set (0.29 sec) MySQL [dafeng]> set enable_vectorized_engine=true; Query OK, 0 rows affected (0.00 sec) MySQL [dafeng]> select max(c_nation) as min_c_nation from customer ; +--------------+ | min_c_nation | +--------------+ | VIETNAM | +--------------+ 1 row in set (0.15 sec) MySQL [dafeng]> select min(c_nation) as min_c_nation from customer ; +--------------+ | min_c_nation | +--------------+ | ALGERIA | +--------------+ 1 row in set (0.12 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
