We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5bdba commit 7d0bcd0Copy full SHA for 7d0bcd0
src/planner/operator/table_scan.rs
@@ -14,7 +14,8 @@ use std::fmt::Formatter;
14
pub struct TableScanOperator {
15
pub(crate) table_name: TableName,
16
pub(crate) primary_keys: Vec<ColumnId>,
17
- pub(crate) columns: BTreeMap<usize, ColumnRef>,
+ #[rustfmt::skip]
18
+ pub(crate) columns: BTreeMap::<usize, ColumnRef>,
19
// Support push down limit.
20
pub(crate) limit: Bounds,
21
0 commit comments