jt2594838 commented on code in PR #13359:
URL: https://github.com/apache/iotdb/pull/13359#discussion_r1740277662
##########
integration-test/src/main/java/org/apache/iotdb/db/query/udf/example/UDAFSum.java:
##########
@@ -101,6 +101,8 @@ public void addInput(State state, Column[] columns, BitMap
bitMap) {
addDoubleInput(sumState, columns, bitMap);
return;
case TEXT:
+ case STRING:
+ case BLOB:
Review Comment:
Added.
##########
iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/udf/builtin/UDTFAbs.java:
##########
@@ -89,6 +97,14 @@ public Object transform(Row row) throws IOException {
return Math.abs(row.getFloat(0));
case DOUBLE:
return Math.abs(row.getDouble(0));
+ case VECTOR:
+ case UNKNOWN:
Review Comment:
Removed.
--
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]