github-actions[bot] commented on code in PR #63254:
URL: https://github.com/apache/doris/pull/63254#discussion_r3240884342


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/udf/AliasUdf.java:
##########
@@ -44,23 +44,14 @@
  * alias function
  */
 public class AliasUdf extends ScalarFunction implements 
ExplicitlyCastableSignature {
-    private final UnboundFunction unboundFunction;
+    private final Expression unboundFunction;

Review Comment:
   Changing this field from `UnboundFunction` to `Expression` removes the last 
use of `UnboundFunction` in this file, but the import at line 25 is still 
present. FE checkstyle enables `UnusedImports`, so this will fail style 
validation. Please remove `import 
org.apache.doris.nereids.analyzer.UnboundFunction;`.



-- 
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]

Reply via email to