Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dqhl76 committed Nov 1, 2024
1 parent 99f6a9f commit 260735b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/query/service/tests/it/sql/exec/get_table_bind_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ use dashmap::DashMap;
use databend_common_base::base::tokio;
use databend_common_base::base::Progress;
use databend_common_base::base::ProgressValues;
use databend_common_base::runtime::Runtime;
use databend_common_catalog::catalog::Catalog;
use databend_common_catalog::cluster_info::Cluster;
use databend_common_catalog::database::Database;
Expand Down Expand Up @@ -1000,6 +1001,10 @@ impl TableContext for CtxDelegation {
fn is_temp_table(&self, _catalog_name: &str, _database_name: &str, _table_name: &str) -> bool {
false
}

fn get_runtime(&self) -> Result<Arc<Runtime>> {
todo!()
}
}

#[tokio::test(flavor = "multi_thread")]
Expand Down
5 changes: 5 additions & 0 deletions src/query/service/tests/it/storages/fuse/operations/commit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ use dashmap::DashMap;
use databend_common_base::base::tokio;
use databend_common_base::base::Progress;
use databend_common_base::base::ProgressValues;
use databend_common_base::runtime::Runtime;
use databend_common_catalog::catalog::Catalog;
use databend_common_catalog::cluster_info::Cluster;
use databend_common_catalog::database::Database;
Expand Down Expand Up @@ -886,6 +887,10 @@ impl TableContext for CtxDelegation {
fn is_temp_table(&self, _catalog_name: &str, _database_name: &str, _table_name: &str) -> bool {
false
}

fn get_runtime(&self) -> Result<Arc<Runtime>> {
todo!()
}
}

#[derive(Clone, Debug)]
Expand Down

0 comments on commit 260735b

Please sign in to comment.