Skip to content

Commit 69a060f

Browse files
solontseviffyio
andauthored
Remove unnecessary syntax coment
Co-authored-by: Ifeanyi Ubah <[email protected]>
1 parent f141ca0 commit 69a060f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/parser/mod.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15808,13 +15808,9 @@ impl<'a> Parser<'a> {
1580815808
Ok(sequence_options)
1580915809
}
1581015810

15811-
/// ```sql
15812-
/// CREATE SERVER [ IF NOT EXISTS ] server_name [ TYPE 'server_type' ] [ VERSION 'server_version' ]
15813-
/// FOREIGN DATA WRAPPER fdw_name
15814-
/// [ OPTIONS ( option 'value' [, ... ] ) ]
15815-
/// ```
15811+
/// Parse a `CREATE SERVER` statement.
1581615812
///
15817-
/// [PostgreSQL Documentation](https://www.postgresql.org/docs/current/sql-createserver.html)
15813+
/// See [Statement::CreateServer]
1581815814
pub fn parse_pg_create_server(&mut self) -> Result<Statement, ParserError> {
1581915815
let ine = self.parse_keywords(&[Keyword::IF, Keyword::NOT, Keyword::EXISTS]);
1582015816
let name = self.parse_object_name(false)?;

0 commit comments

Comments
 (0)