xiangtao opened a new issue, #11034: URL: https://github.com/apache/doris/issues/11034
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Version 0.15.3 ### What's Wrong? i has a mysql external table named mysql_tb_business CREATE EXTERNAL TABLE `mysql_tb_business` ( `id` bigint(20) NOT NULL COMMENT "业务线id", `name` varchar(128) NOT NULL DEFAULT "0" COMMENT "业务线名称", `order_id` int(11) NOT NULL DEFAULT "0" COMMENT "排序", `description` varchar(128) NOT NULL DEFAULT "" COMMENT "描述信息", `delete_flag` tinyint(4) NOT NULL DEFAULT "0" COMMENT "状态 0-未删除,1-已删除", `root_flag` tinyint(4) NOT NULL DEFAULT "0" COMMENT "状态 0-非根节点,1-根节点", `level` int(11) NOT NULL DEFAULT "0" COMMENT "层级", `parent_id` bigint(20) NOT NULL COMMENT "父业务线id", `group_id` bigint(20) NOT NULL COMMENT "业务线组id", `creator` varchar(64) NOT NULL DEFAULT "" COMMENT "创建人", `create_time` datetime NOT NULL COMMENT "创建时间", `updator` varchar(64) NOT NULL DEFAULT "" COMMENT "更新人", `update_time` datetime NOT NULL COMMENT "更新时间" ) ENGINE=MYSQL COMMENT "MYSQL" PROPERTIES ( "host" = "xx", "port" = "xx", "user" = "xx", "password" = "", "database" = "xx", "table" = "tb_business" ); when i execute sql select * from mysql_tb_polestar_business limit 10; but be is crashed . be.out print ``` *** Aborted at 1658304032 (unix time) try "date -d @1658304032" if you are using GNU date *** PC: @ 0x7f73f6fd8d00 (unknown) *** SIGSEGV (@0x30) received by PID 3209 (TID 0x7f73bcd8e700) from PID 48; stack trace: *** @ 0x305eca2 google::(anonymous namespace)::FailureSignalHandler() @ 0x7f73f6fde630 (unknown) @ 0x7f73f6fd8d00 (unknown) @ 0x470ef67 yaSSL::Sessions::lookup() @ 0x46f10e3 ssl_do.isra.0 @ 0x46d0efc mysql_real_connect @ 0x1f00c46 doris::MysqlScanner::open() @ 0x1eff366 doris::MysqlScanNode::open() @ 0x18cc779 doris::PlanFragmentExecutor::open_internal() @ 0x18cdbdc doris::PlanFragmentExecutor::open() @ 0x184979e doris::FragmentExecState::execute() @ 0x184d796 doris::FragmentMgr::_exec_actual() @ 0x1856ddf std::_Function_handler<>::_M_invoke() @ 0x19b89e3 doris::ThreadPool::dispatch_thread() @ 0x19b2b2c doris::Thread::supervise_thread() @ 0x7f73f6fd6ea5 start_thread @ 0x7f73f69fdb0d __clone @ 0x0 (unknown) ``` ### What You Expected? don't crash ### How to Reproduce? _No response_ ### Anything Else? _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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: commits-unsubscr...@doris.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org