Skip to content

Commit db5c9e7

Browse files
Fixe clippy code smell
1 parent 1049bc0 commit db5c9e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6427,7 +6427,6 @@ impl<'a> Parser<'a> {
64276427

64286428
self.expect_token(&Token::LParen)?;
64296429
let columns = self.parse_comma_separated(Parser::parse_create_index_expr::<true>)?;
6430-
println!("columns: {:?}", columns.len());
64316430
self.expect_token(&Token::RParen)?;
64326431

64336432
let include = if self.parse_keyword(Keyword::INCLUDE) {
@@ -13664,7 +13663,7 @@ impl<'a> Parser<'a> {
1366413663
options,
1366513664
with_fill,
1366613665
},
13667-
operator_class: operator_class.map(Into::into),
13666+
operator_class,
1366813667
})
1366913668
}
1367013669

0 commit comments

Comments
 (0)