You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ro...@apache.org on 2022/01/10 05:09:44 UTC

[iotdb] 01/02: fix comments

This is an automated email from the ASF dual-hosted git repository.

rong pushed a commit to branch iotdb-2267
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 755d7afa04ee00df4cea3486a7ff322c4141a82c
Author: Steve Yurong Su <ro...@apache.org>
AuthorDate: Mon Jan 10 12:01:39 2022 +0800

    fix comments
---
 example/udf/src/main/java/org/apache/iotdb/udf/UDTFExample.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example/udf/src/main/java/org/apache/iotdb/udf/UDTFExample.java b/example/udf/src/main/java/org/apache/iotdb/udf/UDTFExample.java
index 9772a2b..66a0748 100644
--- a/example/udf/src/main/java/org/apache/iotdb/udf/UDTFExample.java
+++ b/example/udf/src/main/java/org/apache/iotdb/udf/UDTFExample.java
@@ -41,7 +41,7 @@ public class UDTFExample implements UDTF {
    * INSERT INTO root.sg1.d1(timestamp, s1, s2) VALUES (1, -2, 2);
    * INSERT INTO root.sg1.d1(timestamp, s1, s2) VALUES (2, -3, 3);
    *
-   * CREATE FUNCTION example AS "org.apache.iotdb.udf.UDTFExample";
+   * CREATE FUNCTION example AS 'org.apache.iotdb.udf.UDTFExample';
    * SHOW FUNCTIONS;
    * SELECT s1, example(s1), s2, example(s2) FROM root.sg1.d1;
    */