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 a1c7e07 commit 96a40a8Copy full SHA for 96a40a8
src/parser.rs
@@ -6466,11 +6466,9 @@ impl<'a> Parser<'a> {
6466
})
6467
}
6468
6469
- /// ```sql
6470
/// CREATE [ { TEMPORARY | TEMP } ] SEQUENCE [ IF NOT EXISTS ] <sequence_name>
6471
- /// ```
6472
///
6473
- /// See [Postgres docs](https://www.postgresql.org/docs/current/sql-createsequence.html) for more details.
+ /// See https://www.postgresql.org/docs/current/sql-createsequence.html for more details
6474
pub fn parse_create_sequence(&mut self, temporary: bool) -> Result<Statement, ParserError> {
6475
//[ IF NOT EXISTS ]
6476
let if_not_exists = self.parse_keywords(&[Keyword::IF, Keyword::NOT, Keyword::EXISTS]);
0 commit comments