From bf5bdba5f2b024abe675329c76b3d3c7c0588b2d Mon Sep 17 00:00:00 2001 From: Kould Date: Wed, 16 Jul 2025 20:36:50 +0800 Subject: [PATCH 1/2] chore: v0.1.2 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" From 7d0bcd0d8230fe82438973227224f353926bdb5d Mon Sep 17 00:00:00 2001 From: Kould Date: Wed, 16 Jul 2025 21:50:03 +0800 Subject: [PATCH 2/2] chore: fix macro --- src/planner/operator/table_scan.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,