Skip to content

Commit 96a40a8

Browse files
committed
test error
1 parent a1c7e07 commit 96a40a8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/parser.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6466,11 +6466,9 @@ impl<'a> Parser<'a> {
64666466
})
64676467
}
64686468

6469-
/// ```sql
64706469
/// CREATE [ { TEMPORARY | TEMP } ] SEQUENCE [ IF NOT EXISTS ] <sequence_name>
6471-
/// ```
64726470
///
6473-
/// See [Postgres docs](https://www.postgresql.org/docs/current/sql-createsequence.html) for more details.
6471+
/// See https://www.postgresql.org/docs/current/sql-createsequence.html for more details
64746472
pub fn parse_create_sequence(&mut self, temporary: bool) -> Result<Statement, ParserError> {
64756473
//[ IF NOT EXISTS ]
64766474
let if_not_exists = self.parse_keywords(&[Keyword::IF, Keyword::NOT, Keyword::EXISTS]);

0 commit comments

Comments
 (0)