diff --git a/core/translate/plan.rs b/core/translate/plan.rs index ea181ef85..80463af4d 100644 --- a/core/translate/plan.rs +++ b/core/translate/plan.rs @@ -426,13 +426,25 @@ impl Display for Operator { }?; Ok(()) } - Operator::Search { table_identifier, search, .. } => { + Operator::Search { + table_identifier, + search, + .. + } => { match search { Search::PrimaryKeyEq { .. } | Search::PrimaryKeySearch { .. } => { - writeln!(f, "{}SEARCH {} USING INTEGER PRIMARY KEY (rowid=?)", indent, table_identifier)?; + writeln!( + f, + "{}SEARCH {} USING INTEGER PRIMARY KEY (rowid=?)", + indent, table_identifier + )?; } Search::IndexSearch { index, .. } => { - writeln!(f, "{}SEARCH {} USING INDEX {}", indent, table_identifier, index.name)?; + writeln!( + f, + "{}SEARCH {} USING INDEX {}", + indent, table_identifier, index.name + )?; } } Ok(())