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
* **Operations**: Read-only, only supports `SELECT`, `COUNT/SHOW DEVICES`, `DESC`. Any modifications to table structure or content are not allowed and will result in an error: `"The database 'information_schema' can only be queried." `
69
71
* **Column Names**: System table column names are all lowercase by default and separated by underscores (`_`).
70
72
@@ -369,7 +371,7 @@ IoTDB> select * from information_schema.views
369
371
370
372
### 2.11 MODELS Table
371
373
372
-
> This system table is available starting from version V2.0.5.
374
+
> This system table is available starting from version V 2.0.5 and has been discontinued since version V 2.0.8.
373
375
374
376
* Contains information about all models in the database.
375
377
* The table structure is as follows:
@@ -592,6 +594,99 @@ IoTDB> select * from information_schema.data_nodes
> This system table is available starting from version V 2.0.8
627
+
628
+
* Contains all queries whose execution end time falls within the range `[now() - query_cost_stat_window, now())`, including currently executing queries. The `query_cost_stat_window` parameter represents the query cost statistics window. Its default value is 0 and can be configured via the `iotdb-system.properties` configuration file.
629
+
* The table structure is as follows:
630
+
631
+
| Column Name | Data Type | Column Type | Description |
> This system table is available starting from version V 2.0.8
658
+
659
+
* Contains a histogram of query execution times within the past `query_cost_stat_window` period (only statistics for completed SQL queries). The `query_cost_stat_window` parameter represents the query cost statistics window. Its default value is 0 and can be configured via the `iotdb-system.properties` configuration file.
660
+
* The table structure is as follows:
661
+
662
+
| Column Name | Data Type | Column Type | Description |
* **Operations**: Read-only, only supports `SELECT`, `COUNT/SHOW DEVICES`, `DESC`. Any modifications to table structure or content are not allowed and will result in an error: `"The database 'information_schema' can only be queried." `
69
71
* **Column Names**: System table column names are all lowercase by default and separated by underscores (`_`).
70
72
@@ -369,7 +371,7 @@ IoTDB> select * from information_schema.views
369
371
370
372
### 2.11 MODELS Table
371
373
372
-
> This system table is available starting from version V2.0.5.
374
+
> This system table is available starting from version V 2.0.5 and has been discontinued since version V 2.0.8.
373
375
374
376
* Contains information about all models in the database.
375
377
* The table structure is as follows:
@@ -592,6 +594,99 @@ IoTDB> select * from information_schema.data_nodes
> This system table is available starting from version V 2.0.8
627
+
628
+
* Contains all queries whose execution end time falls within the range `[now() - query_cost_stat_window, now())`, including currently executing queries. The `query_cost_stat_window` parameter represents the query cost statistics window. Its default value is 0 and can be configured via the `iotdb-system.properties` configuration file.
629
+
* The table structure is as follows:
630
+
631
+
| Column Name | Data Type | Column Type | Description |
> This system table is available starting from version V 2.0.8
658
+
659
+
* Contains a histogram of query execution times within the past `query_cost_stat_window` period (only statistics for completed SQL queries). The `query_cost_stat_window` parameter represents the query cost statistics window. Its default value is 0 and can be configured via the `iotdb-system.properties` configuration file.
660
+
* The table structure is as follows:
661
+
662
+
| Column Name | Data Type | Column Type | Description |
0 commit comments