@@ -410,7 +410,7 @@ impl fmt::Display for Interval {
410
410
411
411
/// A field definition within a struct
412
412
///
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
414
414
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
415
415
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
416
416
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -431,7 +431,7 @@ impl fmt::Display for StructField {
431
431
432
432
/// A field definition within a union
433
433
///
434
- /// [duckdb ]: https://duckdb.org/docs/sql/data_types/union.html
434
+ /// [DuckDB ]: https://duckdb.org/docs/sql/data_types/union.html
435
435
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
436
436
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
437
437
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -448,7 +448,7 @@ impl fmt::Display for UnionField {
448
448
449
449
/// A dictionary field within a dictionary.
450
450
///
451
- /// [duckdb ]: https://duckdb.org/docs/sql/data_types/struct#creating-structs
451
+ /// [DuckDB ]: https://duckdb.org/docs/sql/data_types/struct#creating-structs
452
452
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
453
453
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
454
454
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -479,7 +479,7 @@ impl Display for Map {
479
479
480
480
/// A map field within a map.
481
481
///
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
483
483
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
484
484
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
485
485
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -2403,10 +2403,10 @@ impl fmt::Display for DeclareAssignment {
2403
2403
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
2404
2404
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
2405
2405
pub enum DeclareType {
2406
- /// Cursor variable type. e.g. [Snowflake] [Postgres ]
2406
+ /// Cursor variable type. e.g. [Snowflake] [PostgreSQL ]
2407
2407
///
2408
2408
/// [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
2410
2410
Cursor ,
2411
2411
2412
2412
/// Result set variable type. [Snowflake]
@@ -2445,15 +2445,15 @@ impl fmt::Display for DeclareType {
2445
2445
}
2446
2446
2447
2447
/// A `DECLARE` statement.
2448
- /// [Postgres ] [Snowflake] [BigQuery]
2448
+ /// [PostgreSQL ] [Snowflake] [BigQuery]
2449
2449
///
2450
2450
/// Examples:
2451
2451
/// ```sql
2452
2452
/// DECLARE variable_name := 42
2453
2453
/// DECLARE liahona CURSOR FOR SELECT * FROM films;
2454
2454
/// ```
2455
2455
///
2456
- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-declare.html
2456
+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-declare.html
2457
2457
/// [Snowflake]: https://docs.snowflake.com/en/sql-reference/snowflake-scripting/declare
2458
2458
/// [BigQuery]: https://cloud.google.com/bigquery/docs/reference/standard-sql/procedural-language#declare
2459
2459
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
@@ -3038,7 +3038,7 @@ pub enum Statement {
3038
3038
/// ```sql
3039
3039
/// CREATE ROLE
3040
3040
/// ```
3041
- /// See [postgres ](https://www.postgresql.org/docs/current/sql-createrole.html)
3041
+ /// See [PostgreSQL ](https://www.postgresql.org/docs/current/sql-createrole.html)
3042
3042
CreateRole {
3043
3043
names : Vec < ObjectName > ,
3044
3044
if_not_exists : bool ,
@@ -3064,7 +3064,7 @@ pub enum Statement {
3064
3064
/// ```sql
3065
3065
/// CREATE SECRET
3066
3066
/// ```
3067
- /// See [duckdb ](https://duckdb.org/docs/sql/statements/create_secret.html)
3067
+ /// See [DuckDB ](https://duckdb.org/docs/sql/statements/create_secret.html)
3068
3068
CreateSecret {
3069
3069
or_replace : bool ,
3070
3070
temporary : Option < bool > ,
@@ -3568,7 +3568,7 @@ pub enum Statement {
3568
3568
///
3569
3569
/// Supported variants:
3570
3570
/// 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)
3572
3572
/// 3. [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_function_statement)
3573
3573
CreateFunction ( CreateFunction ) ,
3574
3574
/// CREATE TRIGGER
@@ -8299,7 +8299,7 @@ impl fmt::Display for FunctionDeterminismSpecifier {
8299
8299
/// where within the statement, the body shows up.
8300
8300
///
8301
8301
/// [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
8303
8303
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8304
8304
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
8305
8305
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -8337,7 +8337,7 @@ pub enum CreateFunctionBody {
8337
8337
/// RETURN a + b;
8338
8338
/// ```
8339
8339
///
8340
- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-createfunction.html
8340
+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-createfunction.html
8341
8341
Return ( Expr ) ,
8342
8342
}
8343
8343
@@ -8643,9 +8643,9 @@ impl Display for CreateViewParams {
8643
8643
}
8644
8644
}
8645
8645
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 ]
8647
8647
///
8648
- /// [clickhouse ]: https://clickhouse.com/docs/en/engines/table-engines
8648
+ /// [ClickHouse ]: https://clickhouse.com/docs/en/engines/table-engines
8649
8649
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8650
8650
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
8651
8651
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
0 commit comments