@@ -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 ) ) ]
@@ -2385,10 +2385,10 @@ impl fmt::Display for DeclareAssignment {
23852385#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
23862386#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
23872387pub enum DeclareType {
2388- /// Cursor variable type. e.g. [Snowflake] [Postgres ]
2388+ /// Cursor variable type. e.g. [Snowflake] [PostgreSQL ]
23892389 ///
23902390 /// [Snowflake]: https://docs.snowflake.com/en/developer-guide/snowflake-scripting/cursors#declaring-a-cursor
2391- /// [Postgres ]: https://www.postgresql.org/docs/current/plpgsql-cursors.html
2391+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/plpgsql-cursors.html
23922392 Cursor ,
23932393
23942394 /// Result set variable type. [Snowflake]
@@ -2427,15 +2427,15 @@ impl fmt::Display for DeclareType {
24272427}
24282428
24292429/// A `DECLARE` statement.
2430- /// [Postgres ] [Snowflake] [BigQuery]
2430+ /// [PostgreSQL ] [Snowflake] [BigQuery]
24312431///
24322432/// Examples:
24332433/// ```sql
24342434/// DECLARE variable_name := 42
24352435/// DECLARE liahona CURSOR FOR SELECT * FROM films;
24362436/// ```
24372437///
2438- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-declare.html
2438+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-declare.html
24392439/// [Snowflake]: https://docs.snowflake.com/en/sql-reference/snowflake-scripting/declare
24402440/// [BigQuery]: https://cloud.google.com/bigquery/docs/reference/standard-sql/procedural-language#declare
24412441#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
@@ -3020,7 +3020,7 @@ pub enum Statement {
30203020 /// ```sql
30213021 /// CREATE ROLE
30223022 /// ```
3023- /// See [postgres ](https://www.postgresql.org/docs/current/sql-createrole.html)
3023+ /// See [PostgreSQL ](https://www.postgresql.org/docs/current/sql-createrole.html)
30243024 CreateRole {
30253025 names : Vec < ObjectName > ,
30263026 if_not_exists : bool ,
@@ -3046,7 +3046,7 @@ pub enum Statement {
30463046 /// ```sql
30473047 /// CREATE SECRET
30483048 /// ```
3049- /// See [duckdb ](https://duckdb.org/docs/sql/statements/create_secret.html)
3049+ /// See [DuckDB ](https://duckdb.org/docs/sql/statements/create_secret.html)
30503050 CreateSecret {
30513051 or_replace : bool ,
30523052 temporary : Option < bool > ,
@@ -3550,7 +3550,7 @@ pub enum Statement {
35503550 ///
35513551 /// Supported variants:
35523552 /// 1. [Hive](https://cwiki.apache.org/confluence/display/hive/languagemanual+ddl#LanguageManualDDL-Create/Drop/ReloadFunction)
3553- /// 2. [Postgres ](https://www.postgresql.org/docs/15/sql-createfunction.html)
3553+ /// 2. [PostgreSQL ](https://www.postgresql.org/docs/15/sql-createfunction.html)
35543554 /// 3. [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_function_statement)
35553555 CreateFunction ( CreateFunction ) ,
35563556 /// CREATE TRIGGER
@@ -8281,7 +8281,7 @@ impl fmt::Display for FunctionDeterminismSpecifier {
82818281/// where within the statement, the body shows up.
82828282///
82838283/// [BigQuery]: https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#syntax_11
8284- /// [Postgres ]: https://www.postgresql.org/docs/15/sql-createfunction.html
8284+ /// [PostgreSQL ]: https://www.postgresql.org/docs/15/sql-createfunction.html
82858285#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
82868286#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
82878287#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -8319,7 +8319,7 @@ pub enum CreateFunctionBody {
83198319 /// RETURN a + b;
83208320 /// ```
83218321 ///
8322- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-createfunction.html
8322+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-createfunction.html
83238323 Return ( Expr ) ,
83248324}
83258325
@@ -8625,9 +8625,9 @@ impl Display for CreateViewParams {
86258625 }
86268626}
86278627
8628- /// Engine of DB. Some warehouse has parameters of engine, e.g. [clickhouse ]
8628+ /// Engine of DB. Some warehouse has parameters of engine, e.g. [ClickHouse ]
86298629///
8630- /// [clickhouse ]: https://clickhouse.com/docs/en/engines/table-engines
8630+ /// [ClickHouse ]: https://clickhouse.com/docs/en/engines/table-engines
86318631#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
86328632#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
86338633#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
0 commit comments