xinghuayu007 commented on issue #4805: URL: https://github.com/apache/incubator-doris/issues/4805#issuecomment-717662848
Yes, this is the problem of type-casting. In current system, sql like `select * from table where date in (20201030);` date is type of DATE; date and 20201030 will be casted to `DOUBLE` type. That is not corret. I think the invalid type should be found in `Analyze Phase`, not be found in phase of 'Pruning Partitions'. This problem will not cause to scan all partitions. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
