diff --git a/Cargo.lock b/Cargo.lock index d6d8b7f7..ea757eaf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1303,7 +1303,7 @@ dependencies = [ [[package]] name = "kite_sql" -version = "0.1.1" +version = "0.1.2" dependencies = [ "ahash 0.8.12", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index eabb1593..dde07ced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "kite_sql" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["Kould ", "Xwg "] description = "SQL as a Function for Rust" diff --git a/src/planner/operator/table_scan.rs b/src/planner/operator/table_scan.rs index fe94aafa..18a9010d 100644 --- a/src/planner/operator/table_scan.rs +++ b/src/planner/operator/table_scan.rs @@ -14,7 +14,8 @@ use std::fmt::Formatter; pub struct TableScanOperator { pub(crate) table_name: TableName, pub(crate) primary_keys: Vec, - pub(crate) columns: BTreeMap, + #[rustfmt::skip] + pub(crate) columns: BTreeMap::, // Support push down limit. pub(crate) limit: Bounds,