lenmom opened a new issue #244: reqired detailed error message when field type not compatible. URL: https://github.com/apache/incubator-doris/issues/244 **Describe the bug** using insert into [target_table_name] select * from [source_table_name], when the field type is incompatible,the error mesage is not detail enough to find the error. The error message is: "Internal Error, maybe this is a bug, please contact with Palo RD." **To Reproduce** Steps to reproduce the behavior: 1. create target_table_name( name varchar(60)) unique key(name) distributed by hash(name); 2. create source_table_name( time datetime) unique key(time ) distributed by hash(time); 3. insert into target_table_name select * from source_table_name; **Expected behavior** detail message to indicate the error which is using cast date to char(*). **Actual Result** in the mysql console, the output message is:Internal Error, maybe this is a bug, please contact with Palo RD. which has no direct reference for correct the error.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org For additional commands, e-mail: dev-h...@doris.apache.org