We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1049bc0 commit db5c9e7Copy full SHA for db5c9e7
src/parser/mod.rs
@@ -6427,7 +6427,6 @@ impl<'a> Parser<'a> {
6427
6428
self.expect_token(&Token::LParen)?;
6429
let columns = self.parse_comma_separated(Parser::parse_create_index_expr::<true>)?;
6430
- println!("columns: {:?}", columns.len());
6431
self.expect_token(&Token::RParen)?;
6432
6433
let include = if self.parse_keyword(Keyword::INCLUDE) {
@@ -13664,7 +13663,7 @@ impl<'a> Parser<'a> {
13664
13663
options,
13665
with_fill,
13666
},
13667
- operator_class: operator_class.map(Into::into),
+ operator_class,
13668
})
13669
}
13670
0 commit comments