SteveYurongSu commented on code in PR #12158:
URL: https://github.com/apache/iotdb/pull/12158#discussion_r1521462623


##########
iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/customizer/parameter/UDFParameters.java:
##########
@@ -43,14 +44,24 @@ public class UDFParameters {
   private final List<String> childExpressions;
   private final List<Type> childExpressionDataTypes;
   private final Map<String, String> attributes;
+  private final Map<String, String> systemAttributes;
 
   public UDFParameters(
       List<String> childExpressions,
       List<Type> childExpressionDataTypes,
       Map<String, String> attributes) {
+    this(childExpressions, childExpressionDataTypes, attributes, new 
HashMap<>());
+  }
+
+  public UDFParameters(
+      List<String> childExpressions,
+      List<Type> childExpressionDataTypes,
+      Map<String, String> attributes,

Review Comment:
   ```suggestion
         Map<String, String> userAttributes,
   ```



-- 
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: reviews-unsubscr...@iotdb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to