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 5dee741 commit adb7b76Copy full SHA for adb7b76
src/parser.rs
@@ -1296,7 +1296,9 @@ impl<'a> Parser<'a> {
1296
&& dialect_of!(self is MySqlDialect | GenericDialect)
1297
{
1298
// Support AUTO_INCREMENT for MySQL
1299
- Ok(Some(ColumnOption::DialectSpecific(vec![Token::make_keyword("AUTO_INCREMENT")])))
+ Ok(Some(ColumnOption::DialectSpecific(vec![
1300
+ Token::make_keyword("AUTO_INCREMENT"),
1301
+ ])))
1302
} else if self.parse_keyword(Keyword::AUTOINCREMENT)
1303
&& dialect_of!(self is SQLiteDialect | GenericDialect)
1304
0 commit comments