powerLambda commented on issue #22200: URL: https://github.com/apache/doris/issues/22200#issuecomment-1658068042
example sql "select char(15049882, 15179199, 14989469);" does not work, **SQL Error [1105] [HY000]: errCode = 2, detailMessage = No matching function with signature: char(int(11), int(11), int(11)).** https://doris.apache.org/zh-CN/docs/dev/sql-manual/sql-functions/string-functions/char ``` mysql> select char(68, 111, 114, 105, 115); +--------------------------------------+ | char('utf8', 68, 111, 114, 105, 115) | +--------------------------------------+ | Doris | +--------------------------------------+ mysql> select char(15049882, 15179199, 14989469); +--------------------------------------------+ | char('utf8', 15049882, 15179199, 14989469) | +--------------------------------------------+ | 多睿丝 | +--------------------------------------------+ mysql> select char(255); +-------------------+ | char('utf8', 255) | +-------------------+ | NULL | +-------------------+ ``` -- 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]
