File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
service/tests/it/interpreters
storages/fuse/src/table_functions/fuse_blocks Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ async fn test_call_fuse_snapshot_interpreter() -> Result<()> {
110
110
Ok ( ( ) )
111
111
}
112
112
113
-
114
113
#[ tokio:: test( flavor = "multi_thread" , worker_threads = 1 ) ]
115
114
async fn test_call_fuse_block_interpreter ( ) -> Result < ( ) > {
116
115
let ( _guard, ctx) = crate :: tests:: create_query_context ( ) . await ?;
@@ -166,7 +165,7 @@ async fn test_call_fuse_block_interpreter() -> Result<()> {
166
165
let _ = executor. execute ( ) . await ?;
167
166
}
168
167
169
- // FuseHistory
168
+ // fuse_block
170
169
{
171
170
let query = "call system$fuse_block(default, a, xxxx)" ;
172
171
let ( plan, _, _) = planner. plan_sql ( query) . await ?;
@@ -255,7 +254,7 @@ async fn test_call_clustering_information_interpreter() -> Result<()> {
255
254
let _ = executor. execute ( ) . await ?;
256
255
}
257
256
258
- // FuseHistory
257
+ // clustering_information
259
258
{
260
259
let query = "call system$clustering_information(default, b)" ;
261
260
let ( plan, _, _) = planner. plan_sql ( query) . await ?;
Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ use std::sync::Arc;
18
18
use common_catalog:: catalog:: CATALOG_DEFAULT ;
19
19
use common_datablocks:: DataBlock ;
20
20
use common_exception:: Result ;
21
- use common_meta_app:: schema:: TableIdent ;
22
- use common_meta_app:: schema:: TableInfo ;
23
- use common_meta_app:: schema:: TableMeta ;
24
21
use common_legacy_planners:: Expression ;
25
22
use common_legacy_planners:: Extras ;
26
23
use common_legacy_planners:: Partitions ;
27
24
use common_legacy_planners:: ReadDataSourcePlan ;
28
25
use common_legacy_planners:: Statistics ;
26
+ use common_meta_app:: schema:: TableIdent ;
27
+ use common_meta_app:: schema:: TableInfo ;
28
+ use common_meta_app:: schema:: TableMeta ;
29
29
30
30
use crate :: pipelines:: processors:: port:: OutputPort ;
31
31
use crate :: pipelines:: processors:: processor:: ProcessorPtr ;
You can’t perform that action at this time.
0 commit comments