Skip to content

Commit 86e690b

Browse files
committed
fix DatabaseIT
Signed-off-by: Weihao Li <[email protected]>
1 parent 01aaef2 commit 86e690b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration-test/src/test/java/org/apache/iotdb/relational/it/schema/IoTDBDatabaseIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,12 +648,14 @@ public void testInformationSchema() throws SQLException {
648648
"information_schema,config_nodes,INF,USING,null,SYSTEM VIEW,",
649649
"information_schema,data_nodes,INF,USING,null,SYSTEM VIEW,",
650650
"information_schema,connections,INF,USING,null,SYSTEM VIEW,",
651+
"information_schema,current_queries,INF,USING,null,SYSTEM VIEW,",
652+
"information_schema,queries_costs_histogram,INF,USING,null,SYSTEM VIEW,",
651653
"test,test,INF,USING,test,BASE TABLE,",
652654
"test,view_table,100,USING,null,VIEW FROM TREE,")));
653655
TestUtils.assertResultSetEqual(
654656
statement.executeQuery("count devices from tables where status = 'USING'"),
655657
"count(devices),",
656-
Collections.singleton("20,"));
658+
Collections.singleton("22,"));
657659
TestUtils.assertResultSetEqual(
658660
statement.executeQuery(
659661
"select * from columns where table_name = 'queries' or database = 'test'"),

0 commit comments

Comments
 (0)