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 c92a9f1 commit 1e9908fCopy full SHA for 1e9908f
src/parser/mod.rs
@@ -5524,9 +5524,7 @@ impl<'a> Parser<'a> {
5524
let data_type_idx = self.get_current_index();
5525
5526
// DEFAULT will be parsed as `DataType::Custom`, which is undesirable in this context
5527
- fn parse_data_type_no_default(
5528
- parser: &mut Parser,
5529
- ) -> Result<DataType, ParserError> {
+ fn parse_data_type_no_default(parser: &mut Parser) -> Result<DataType, ParserError> {
5530
if parser.peek_keyword(Keyword::DEFAULT) {
5531
// This dummy error is ignored in `maybe_parse`
5532
parser_err!(
0 commit comments