create server statement example is removed, use a doc link for more information

This commit is contained in:
Sergey Olontsev 2025-07-02 08:08:23 +03:00
parent 77b868b0a2
commit f141ca08ac
No known key found for this signature in database
GPG key ID: 67DDC06CA52E8A39

View file

@ -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))]