Skip to content

Commit de7bcdf

Browse files
committed
make lint
1 parent 2bf0f57 commit de7bcdf

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/query/service/tests/it/interpreters/interpreter_call.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ async fn test_call_fuse_snapshot_interpreter() -> Result<()> {
110110
Ok(())
111111
}
112112

113-
114113
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
115114
async fn test_call_fuse_block_interpreter() -> Result<()> {
116115
let (_guard, ctx) = crate::tests::create_query_context().await?;
@@ -166,7 +165,7 @@ async fn test_call_fuse_block_interpreter() -> Result<()> {
166165
let _ = executor.execute().await?;
167166
}
168167

169-
// FuseHistory
168+
// fuse_block
170169
{
171170
let query = "call system$fuse_block(default, a, xxxx)";
172171
let (plan, _, _) = planner.plan_sql(query).await?;
@@ -255,7 +254,7 @@ async fn test_call_clustering_information_interpreter() -> Result<()> {
255254
let _ = executor.execute().await?;
256255
}
257256

258-
// FuseHistory
257+
// clustering_information
259258
{
260259
let query = "call system$clustering_information(default, b)";
261260
let (plan, _, _) = planner.plan_sql(query).await?;

src/query/storages/fuse/src/table_functions/fuse_blocks/fuse_block_table.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ use std::sync::Arc;
1818
use common_catalog::catalog::CATALOG_DEFAULT;
1919
use common_datablocks::DataBlock;
2020
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;
2421
use common_legacy_planners::Expression;
2522
use common_legacy_planners::Extras;
2623
use common_legacy_planners::Partitions;
2724
use common_legacy_planners::ReadDataSourcePlan;
2825
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;
2929

3030
use crate::pipelines::processors::port::OutputPort;
3131
use crate::pipelines::processors::processor::ProcessorPtr;

0 commit comments

Comments
 (0)