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
3. Modify the model configuration file`config.json` to ensure it contains the following fields:
337
337
338
-
**Before V2.0.9-beta**
338
+
**Before V2.0.10**
339
339
```JSON
340
340
{
341
341
"auto_map": {
@@ -350,7 +350,7 @@ It costs 1.615s
350
350
* The inference pipeline class**must** be inherited and specified;
351
351
* For built-inand user-defined models managed by AINode, `model_type` also serves as a unique non-duplicable identifier. That is, the model type to be registered must not duplicate any existing model types; models created via fine-tuning will inherit the model type of the original model.
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ SELECT LEAST(temperature,humidity) FROM table2;
162
162
| COUNT_IF | COUNT_IF(exp) counts the number of rows that satisfy a specified boolean expression. |`exp` must be a boolean expression,(e.g. `count_if(temperature>20)`) | INT64 |
163
163
| APPROX_COUNT_DISTINCT | The APPROX_COUNT_DISTINCT(x[, maxStandardError]) function provides an approximation of COUNT(DISTINCT x), returning the estimated number of distinct input values. |`x`: The target column to be calculated, supports all data types.<br>`maxStandardError` (optional): Specifies the maximum standard error allowed for the function's result. Valid range is [0.0040625, 0.26]. Defaults to 0.023 if not specified. | INT64 |
164
164
| APPROX_MOST_FREQUENT | The APPROX_MOST_FREQUENT(x, k, capacity) function is used to approximately calculate the top k most frequent elements in a dataset. It returns a JSON-formatted string where the keys are the element values and the values are their corresponding approximate frequencies. (Available since V2.0.5.1) |`x` : The column to be calculated, supporting all existing data types in IoTDB;<br> `k`: The number of top-k most frequent values to return;<br>`capacity`: The number of buckets used for computation, which relates to memory usage—a larger value reduces error but consumes more memory, while a smaller value increases error but uses less memory. | STRING |
165
-
| APPROX_PERCENTILE | The APPROX_PERCENTILE function calculates the value at a specified percentile in a dataset, helping quickly understand data distribution (e.g., median, quartiles). It supports weighted percentile calculation. If the percentile does not point to an exact position, it returns a linear interpolation of adjacent values at that position.Memory usage depends on the number of centroids, and the maximum number of centroids can be limited using the compression parameter. Error can be estimated using empirical formulas.Note: This function is supported since V2.0.9-beta. | Unweighted Version: APPROX_PERCENTILE(x, percentage) <br> x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP. <br> percentage: Target percentile, DOUBLE type. <br>Weighted Version: APPROX_PERCENTILE(x, w, percentage)<br>x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.<br>w: Weight column, integer type (must align with the length of x; NULL or 0 means the row is ignored).<br>percentage: Target percentile, DOUBLE type. | Same as the input column x. |
165
+
| APPROX_PERCENTILE | The APPROX_PERCENTILE function calculates the value at a specified percentile in a dataset, helping quickly understand data distribution (e.g., median, quartiles). It supports weighted percentile calculation. If the percentile does not point to an exact position, it returns a linear interpolation of adjacent values at that position.Memory usage depends on the number of centroids, and the maximum number of centroids can be limited using the compression parameter. Error can be estimated using empirical formulas.Note: This function is supported since V2.0.10. | Unweighted Version: APPROX_PERCENTILE(x, percentage) <br> x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP. <br> percentage: Target percentile, DOUBLE type. <br>Weighted Version: APPROX_PERCENTILE(x, w, percentage)<br>x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.<br>w: Weight column, integer type (must align with the length of x; NULL or 0 means the row is ignored).<br>percentage: Target percentile, DOUBLE type. | Same as the input column x. |
166
166
| SUM | Calculates the sum. | INT32 INT64 FLOAT DOUBLE | DOUBLE |
| Function Name | Description | Input Type | Output Type |
@@ -1605,7 +1605,7 @@ The IF expression has two forms: one that specifies only the true value, and ano
1605
1605
|`IF(condition, true_value)`| If the condition evaluates to true, `true_value` is computed and returned; otherwise, `null` is returned and `true_value` is not evaluated. | — |
1606
1606
|`IF(condition, true_value, false_value)`| If the condition evaluates to true, `true_value` is computed and returned; otherwise, `false_value` is computed and returned. | The data types of `true_value` and `false_value`**must be exactly the same**. Implicit type conversion is not supported. |
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
25
25
CTE (Common Table Expressions) supports defining one or more temporary result sets (called common tables) using the `WITH` clause. These result sets can be referenced multiple times in subsequent parts of the same query. CTE provides a clean way to construct complex queries, making SQL code more readable and maintainable.
26
26
27
-
> Note: This feature is available since version 2.0.9-beta.
27
+
> Note: This feature is available since version 2.0.10.
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@
22
22
23
23
IoTDB natively supports standard SQL set operations, including three core operators: **UNION**, **INTERSECT**, and **EXCEPT**. These operations enable seamless merging, comparison, and filtering of query results from multiple time-series data sources, greatly improving the flexibility and efficiency of time-series data analysis.
24
24
25
-
> Note: This feature is available since version 2.0.9-beta.
25
+
> Note: This feature is available since version 2.0.10.
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an
34
34
|`-h`|`--host`| Hostname of the IoTDB server. | No |`127.0.0.1`|
35
35
|`-p`|`--port`| Port number of the IoTDB server. | No |`6667`|
36
36
|`-u`|`--username`| Username for authentication. | No |`root`|
37
-
|`-pw`|`--password`| Password for authentication. Supported for hidden input since V2.0.9-beta| No |`root`|
37
+
|`-pw`|`--password`| Password for authentication. Supported for hidden input since V2.0.10| No |`root`|
38
38
|`-sql_dialect`|`--sql_dialect`| Select server model : tree or table | No | tree |
39
39
|`-db `|`--database`| The target database to be exported only takes effect when `-sql_dialect` is of the table type. | Yes when `-sql_dialect = table`| - |
40
40
|`-table`|`--table`| The target table to be exported only takes effect when `-sql_dialect` is of the table type. If the `-q` parameter is specified, this parameter will not take effect. If the export type is tsfile/sql, this parameter is mandatory. | No | - |
@@ -45,9 +45,9 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an
45
45
|`-q`|`--query`| SQL query command to execute. Starting from v2.0.8, semicolons in SQL statements are automatically removed, and query execution proceeds normally. | No | - |
46
46
|`-timeout`|`--query_timeout`| Query timeout in milliseconds (ms). | No |`-1` (before v2.0.8)<br>`Long.MAX_VALUE` (v2.0.8 and later)<br>(Range: `-1~Long.MAX_VALUE`) |
47
47
|`-help`|`--help`| Display help information. | No | - |
48
-
|`-usessl`|`--use_ssl`| Use SSL protocol. Supported since V2.0.9-beta| No | - |
49
-
|`-ts`|`--trust_store`| Trust store. Supports hidden input. Supported since V2.0.9-beta| No | - |
50
-
|`-tpw`|`--trust_store_password`| Trust store password. Supports hidden input. Supported since V2.0.9-beta| No | - |
48
+
|`-usessl`|`--use_ssl`| Use SSL protocol. Supported since V2.0.10| No | - |
49
+
|`-ts`|`--trust_store`| Trust store. Supports hidden input. Supported since V2.0.10| No | - |
50
+
|`-tpw`|`--trust_store_password`| Trust store password. Supports hidden input. Supported since V2.0.10| No | - |
0 commit comments