dataalive commented on issue #8465: URL: https://github.com/apache/incubator-doris/issues/8465#issuecomment-1066527243
mysql 8 is ok ``` mysql> select * from customer; +-----------+--------------------+ | c_custkey | c_name | +-----------+--------------------+ | 5 | Customer#000000005 | | 35 | Customer#000000035 | | 40 | Customer#000000040 | | 99 | Customer#000000099 | +-----------+--------------------+ 4 rows in set (0.00 sec) mysql> select max(c_name) from customer; +--------------------+ | max(c_name) | +--------------------+ | Customer#000000099 | +--------------------+ 1 row in set (0.01 sec) mysql> select min(c_name) from customer; +--------------------+ | min(c_name) | +--------------------+ | Customer#000000005 | +--------------------+ 1 row in set (0.00 sec) mysql> desc customer; +-----------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+-------------+------+-----+---------+-------+ | c_custkey | int | NO | | NULL | | | c_name | varchar(26) | NO | | NULL | | +-----------+-------------+------+-----+---------+-------+ 2 rows in set (0.00 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]
