Skip to content

Commit 7d0bcd0

Browse files
committed
chore: fix macro
1 parent bf5bdba commit 7d0bcd0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)