File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff 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)?;
You can’t perform that action at this time.
0 commit comments