pranavbhole commented on code in PR #15034:
URL: https://github.com/apache/druid/pull/15034#discussion_r1346640185


##########
processing/src/main/java/org/apache/druid/math/expr/BuiltInExprMacros.java:
##########
@@ -25,20 +25,28 @@
 import javax.annotation.Nullable;
 import java.util.Collections;
 import java.util.List;
+import java.util.Optional;
 import java.util.stream.Collectors;
 
 public class BuiltInExprMacros
 {
   public static class ComplexDecodeBase64ExprMacro implements 
ExprMacroTable.ExprMacro
   {
     public static final String NAME = "complex_decode_base64";
+    public static final String ALIAS_NAME = "decode_base64_complex";
 
     @Override
     public String name()
     {
       return NAME;
     }
 
+    @Override
+    public Optional<String> alias()

Review Comment:
   Thank you for review, pushed a commit to create AliasExprMacro. Please 
review it again. 



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