Skip to content

Commit 70d3ffb

Browse files
authored
chore: v0.1.2 (#267)
* chore: v0.1.2 * chore: fix macro
1 parent 4b468b7 commit 70d3ffb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "kite_sql"
5-
version = "0.1.1"
5+
version = "0.1.2"
66
edition = "2021"
77
authors = ["Kould <[email protected]>", "Xwg <[email protected]>"]
88
description = "SQL as a Function for Rust"

src/planner/operator/table_scan.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ use std::fmt::Formatter;
1414
pub struct TableScanOperator {
1515
pub(crate) table_name: TableName,
1616
pub(crate) primary_keys: Vec<ColumnId>,
17-
pub(crate) columns: BTreeMap<usize, ColumnRef>,
17+
#[rustfmt::skip]
18+
pub(crate) columns: BTreeMap::<usize, ColumnRef>,
1819
// Support push down limit.
1920
pub(crate) limit: Bounds,
2021

0 commit comments

Comments
 (0)