We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f141ca0 commit 69a060fCopy full SHA for 69a060f
1 file changed
src/parser/mod.rs
@@ -15808,13 +15808,9 @@ impl<'a> Parser<'a> {
15808
Ok(sequence_options)
15809
}
15810
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
- /// ```
+ /// Parse a `CREATE SERVER` statement.
15816
///
15817
- /// [PostgreSQL Documentation](https://www.postgresql.org/docs/current/sql-createserver.html)
+ /// See [Statement::CreateServer]
15818
pub fn parse_pg_create_server(&mut self) -> Result<Statement, ParserError> {
15819
let ine = self.parse_keywords(&[Keyword::IF, Keyword::NOT, Keyword::EXISTS]);
15820
let name = self.parse_object_name(false)?;
0 commit comments