From f141ca08ac717d8aec94e23900aa436648a672fe Mon Sep 17 00:00:00 2001 From: Sergey Olontsev Date: Wed, 2 Jul 2025 08:08:23 +0300 Subject: [PATCH] create server statement example is removed, use a doc link for more information --- src/ast/mod.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/ast/mod.rs b/src/ast/mod.rs index a7a130f3..e78f7e65 100644 --- a/src/ast/mod.rs +++ b/src/ast/mod.rs @@ -7980,13 +7980,6 @@ impl fmt::Display for SecretOption { /// A `CREATE SERVER` statement. /// -/// Examples: -/// ```sql -/// CREATE SERVER [ IF NOT EXISTS ] server_name [ TYPE 'server_type' ] [ VERSION 'server_version' ] -/// FOREIGN DATA WRAPPER fdw_name -/// [ OPTIONS ( option 'value' [, ... ] ) ] -/// ``` -/// /// [PostgreSQL Documentation](https://www.postgresql.org/docs/current/sql-createserver.html) #[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Ord, Hash)] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]