github-actions[bot] commented on code in PR #66981: URL: https://github.com/apache/doris/pull/66981#discussion_r3821999504
########## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/CTEInline.java: ########## @@ -26,15 +26,19 @@ import org.apache.doris.nereids.trees.expressions.Expression; import org.apache.doris.nereids.trees.expressions.NamedExpression; import org.apache.doris.nereids.trees.expressions.Slot; +import org.apache.doris.nereids.trees.expressions.literal.Literal; Review Comment: [P1] Remove the unused import so FE CheckStyle passes The current head's [FE Code Style Checker](https://github.com/apache/doris/actions/runs/32372060577/job/96434679592) fails on this line with `Unused import ... Literal [UnusedImports]`. `CTEInline` delegates the literal check to `ExpressionUtils::isPureLiteralExpr`, so this import is not referenced. Please delete it to restore the mandatory FE style gate. ```suggestion ``` -- 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]
