You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: iotdb-api/udf-api/src/main/java/org/apache/iotdb/udf/api/relational/table/specification/TableParameterSpecification.java
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,24 @@
21
21
22
22
importjava.util.Optional;
23
23
24
+
/**
25
+
* TableParameterSpecification are classified by two characteristics:
26
+
*
27
+
* <ul>
28
+
* <li>1. Input tables have either row semantics or set semantics, as follows:
29
+
* <ul>
30
+
* <li>Row semantics means that the the result of the PTF as decided on a row-by-row basis.
31
+
* As an extreme example, the DBMS could atomize the input table into individual rows,
32
+
* and send each single row to a different processor.
33
+
* <li>Set semantics means that the outcome of the function depends on how the data is
34
+
* partitioned. A partition shall not be split across processors, nor may a processor
35
+
* handle more than one partition.
36
+
* </ul>
37
+
* <li>2. Whether the input table supports pass-through columns or not. Pass-through columns isa
38
+
* mechanism enabling the PTF to copy every column of an input row into columns of an output
0 commit comments