@@ -410,7 +410,7 @@ impl fmt::Display for Interval {
410410
411411/// A field definition within a struct
412412///
413- /// [bigquery ]: https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#struct_type
413+ /// [BigQuery ]: https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#struct_type
414414#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
415415#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
416416#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -431,7 +431,7 @@ impl fmt::Display for StructField {
431431
432432/// A field definition within a union
433433///
434- /// [duckdb ]: https://duckdb.org/docs/sql/data_types/union.html
434+ /// [DuckDB ]: https://duckdb.org/docs/sql/data_types/union.html
435435#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
436436#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
437437#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -448,7 +448,7 @@ impl fmt::Display for UnionField {
448448
449449/// A dictionary field within a dictionary.
450450///
451- /// [duckdb ]: https://duckdb.org/docs/sql/data_types/struct#creating-structs
451+ /// [DuckDB ]: https://duckdb.org/docs/sql/data_types/struct#creating-structs
452452#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
453453#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
454454#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -479,7 +479,7 @@ impl Display for Map {
479479
480480/// A map field within a map.
481481///
482- /// [duckdb ]: https://duckdb.org/docs/sql/data_types/map.html#creating-maps
482+ /// [DuckDB ]: https://duckdb.org/docs/sql/data_types/map.html#creating-maps
483483#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
484484#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
485485#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -2403,10 +2403,10 @@ impl fmt::Display for DeclareAssignment {
24032403#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
24042404#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
24052405pub enum DeclareType {
2406- /// Cursor variable type. e.g. [Snowflake] [Postgres ]
2406+ /// Cursor variable type. e.g. [Snowflake] [PostgreSQL ]
24072407 ///
24082408 /// [Snowflake]: https://docs.snowflake.com/en/developer-guide/snowflake-scripting/cursors#declaring-a-cursor
2409- /// [Postgres ]: https://www.postgresql.org/docs/current/plpgsql-cursors.html
2409+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/plpgsql-cursors.html
24102410 Cursor ,
24112411
24122412 /// Result set variable type. [Snowflake]
@@ -2445,15 +2445,15 @@ impl fmt::Display for DeclareType {
24452445}
24462446
24472447/// A `DECLARE` statement.
2448- /// [Postgres ] [Snowflake] [BigQuery]
2448+ /// [PostgreSQL ] [Snowflake] [BigQuery]
24492449///
24502450/// Examples:
24512451/// ```sql
24522452/// DECLARE variable_name := 42
24532453/// DECLARE liahona CURSOR FOR SELECT * FROM films;
24542454/// ```
24552455///
2456- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-declare.html
2456+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-declare.html
24572457/// [Snowflake]: https://docs.snowflake.com/en/sql-reference/snowflake-scripting/declare
24582458/// [BigQuery]: https://cloud.google.com/bigquery/docs/reference/standard-sql/procedural-language#declare
24592459#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
@@ -3038,7 +3038,7 @@ pub enum Statement {
30383038 /// ```sql
30393039 /// CREATE ROLE
30403040 /// ```
3041- /// See [postgres ](https://www.postgresql.org/docs/current/sql-createrole.html)
3041+ /// See [PostgreSQL ](https://www.postgresql.org/docs/current/sql-createrole.html)
30423042 CreateRole {
30433043 names : Vec < ObjectName > ,
30443044 if_not_exists : bool ,
@@ -3064,7 +3064,7 @@ pub enum Statement {
30643064 /// ```sql
30653065 /// CREATE SECRET
30663066 /// ```
3067- /// See [duckdb ](https://duckdb.org/docs/sql/statements/create_secret.html)
3067+ /// See [DuckDB ](https://duckdb.org/docs/sql/statements/create_secret.html)
30683068 CreateSecret {
30693069 or_replace : bool ,
30703070 temporary : Option < bool > ,
@@ -3568,7 +3568,7 @@ pub enum Statement {
35683568 ///
35693569 /// Supported variants:
35703570 /// 1. [Hive](https://cwiki.apache.org/confluence/display/hive/languagemanual+ddl#LanguageManualDDL-Create/Drop/ReloadFunction)
3571- /// 2. [Postgres ](https://www.postgresql.org/docs/15/sql-createfunction.html)
3571+ /// 2. [PostgreSQL ](https://www.postgresql.org/docs/15/sql-createfunction.html)
35723572 /// 3. [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_function_statement)
35733573 CreateFunction ( CreateFunction ) ,
35743574 /// CREATE TRIGGER
@@ -8299,7 +8299,7 @@ impl fmt::Display for FunctionDeterminismSpecifier {
82998299/// where within the statement, the body shows up.
83008300///
83018301/// [BigQuery]: https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#syntax_11
8302- /// [Postgres ]: https://www.postgresql.org/docs/15/sql-createfunction.html
8302+ /// [PostgreSQL ]: https://www.postgresql.org/docs/15/sql-createfunction.html
83038303#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
83048304#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
83058305#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -8337,7 +8337,7 @@ pub enum CreateFunctionBody {
83378337 /// RETURN a + b;
83388338 /// ```
83398339 ///
8340- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-createfunction.html
8340+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-createfunction.html
83418341 Return ( Expr ) ,
83428342}
83438343
@@ -8643,9 +8643,9 @@ impl Display for CreateViewParams {
86438643 }
86448644}
86458645
8646- /// Engine of DB. Some warehouse has parameters of engine, e.g. [clickhouse ]
8646+ /// Engine of DB. Some warehouse has parameters of engine, e.g. [ClickHouse ]
86478647///
8648- /// [clickhouse ]: https://clickhouse.com/docs/en/engines/table-engines
8648+ /// [ClickHouse ]: https://clickhouse.com/docs/en/engines/table-engines
86498649#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
86508650#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
86518651#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
0 commit comments