Skip to content

Commit ab25e36

Browse files
authored
Update manual version references to 2.0.10 (#1179)
1 parent e5bf4fe commit ab25e36

76 files changed

Lines changed: 208 additions & 216 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ It costs 1.615s
165165
2. The model must inherit an AINode inference pipeline class (currently supports forecasting pipeline):
166166
* iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic_pipeline.py
167167

168-
**Before V2.0.9-beta**
168+
**Before V2.0.10**
169169
```Python
170170
class BasicPipeline(ABC):
171171
def __init__(self, model_id, **model_kwargs):
@@ -247,7 +247,7 @@ It costs 1.615s
247247
pass
248248
```
249249

250-
**From V2.0.9-beta onwards**
250+
**From V2.0.10 onwards**
251251
```Python
252252
class BasicPipeline(ABC):
253253
def __init__(self, model_id, **model_kwargs):
@@ -335,7 +335,7 @@ It costs 1.615s
335335

336336
3. Modify the model configuration file `config.json` to ensure it contains the following fields:
337337

338-
**Before V2.0.9-beta**
338+
**Before V2.0.10**
339339
```JSON
340340
{
341341
"auto_map": {
@@ -350,7 +350,7 @@ It costs 1.615s
350350
* The inference pipeline class **must** be inherited and specified;
351351
* For built-in and 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.
352352

353-
**From V2.0.9-beta onwards**
353+
**From V2.0.10 onwards**
354354
> The `model_type` parameter is **not required**
355355
```JSON
356356
{

src/UserGuide/Master/Table/Reference/System-Tables_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ IoTDB> SELECT * FROM information_schema.services
717717
```
718718

719719
### 2.22 TABLE_DISK_USAGE
720-
> This system table is available since version V2.0.9-beta
720+
> This system table is available since version V2.0.10
721721
722722
Used to display the disk space usage of specified tables (excluding views), including the size of ChunkGroups and the size of Metadata.
723723

src/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ SELECT LEAST(temperature,humidity) FROM table2;
162162
| 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 |
163163
| 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 |
164164
| 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. |
166166
| SUM | Calculates the sum. | INT32 INT64 FLOAT DOUBLE | DOUBLE |
167167
| AVG | Calculates the average. | INT32 INT64 FLOAT DOUBLE | DOUBLE |
168168
| MAX | Finds the maximum value. | All types | Same as input type |
@@ -1244,7 +1244,7 @@ IoTDB:database1> select length, width, bitwise_right_shift_arithmetic(length,wid
12441244

12451245
## 7. Binary Functions
12461246

1247-
> Supported since V2.0.9-beta
1247+
> Supported since V2.0.10
12481248
12491249
### 7.1 Base64 Encoding Functions
12501250
| 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
16051605
| `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. ||
16061606
| `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. |
16071607

1608-
> Supported since V2.0.9-beta
1608+
> Supported since V2.0.10
16091609
16101610
**Examples:**
16111611

src/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
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.
2626

27-
> Note: This feature is available since version 2.0.9-beta.
27+
> Note: This feature is available since version 2.0.10.
2828
2929
## 2. Syntax Definition
3030

src/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
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.
2424

25-
> Note: This feature is available since version 2.0.9-beta.
25+
> Note: This feature is available since version 2.0.10.
2626
2727
## 1. UNION
2828
### 1.1 Overview

src/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an
3434
| `-h` | `--host` | Hostname of the IoTDB server. | No | `127.0.0.1` |
3535
| `-p` | `--port` | Port number of the IoTDB server. | No | `6667` |
3636
| `-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` |
3838
| `-sql_dialect` | `--sql_dialect` | Select server model : tree or table | No | tree |
3939
| `-db ` | `--database` | The target database to be exported only takes effect when `-sql_dialect` is of the table type. | Yes when `-sql_dialect = table`| - |
4040
| `-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
4545
| `-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 | - |
4646
| `-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`) |
4747
| `-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 | - |
5151

5252
### 2.2 CSV Format
5353
#### 2.2.1 Command

0 commit comments

Comments
 (0)