@@ -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 ) ) ]
@@ -2385,10 +2385,10 @@ impl fmt::Display for DeclareAssignment {
2385
2385
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
2386
2386
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
2387
2387
pub enum DeclareType {
2388
- /// Cursor variable type. e.g. [Snowflake] [Postgres ]
2388
+ /// Cursor variable type. e.g. [Snowflake] [PostgreSQL ]
2389
2389
///
2390
2390
/// [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
2392
2392
Cursor ,
2393
2393
2394
2394
/// Result set variable type. [Snowflake]
@@ -2427,15 +2427,15 @@ impl fmt::Display for DeclareType {
2427
2427
}
2428
2428
2429
2429
/// A `DECLARE` statement.
2430
- /// [Postgres ] [Snowflake] [BigQuery]
2430
+ /// [PostgreSQL ] [Snowflake] [BigQuery]
2431
2431
///
2432
2432
/// Examples:
2433
2433
/// ```sql
2434
2434
/// DECLARE variable_name := 42
2435
2435
/// DECLARE liahona CURSOR FOR SELECT * FROM films;
2436
2436
/// ```
2437
2437
///
2438
- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-declare.html
2438
+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-declare.html
2439
2439
/// [Snowflake]: https://docs.snowflake.com/en/sql-reference/snowflake-scripting/declare
2440
2440
/// [BigQuery]: https://cloud.google.com/bigquery/docs/reference/standard-sql/procedural-language#declare
2441
2441
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
@@ -3020,7 +3020,7 @@ pub enum Statement {
3020
3020
/// ```sql
3021
3021
/// CREATE ROLE
3022
3022
/// ```
3023
- /// See [postgres ](https://www.postgresql.org/docs/current/sql-createrole.html)
3023
+ /// See [PostgreSQL ](https://www.postgresql.org/docs/current/sql-createrole.html)
3024
3024
CreateRole {
3025
3025
names : Vec < ObjectName > ,
3026
3026
if_not_exists : bool ,
@@ -3046,7 +3046,7 @@ pub enum Statement {
3046
3046
/// ```sql
3047
3047
/// CREATE SECRET
3048
3048
/// ```
3049
- /// See [duckdb ](https://duckdb.org/docs/sql/statements/create_secret.html)
3049
+ /// See [DuckDB ](https://duckdb.org/docs/sql/statements/create_secret.html)
3050
3050
CreateSecret {
3051
3051
or_replace : bool ,
3052
3052
temporary : Option < bool > ,
@@ -3550,7 +3550,7 @@ pub enum Statement {
3550
3550
///
3551
3551
/// Supported variants:
3552
3552
/// 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)
3554
3554
/// 3. [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_function_statement)
3555
3555
CreateFunction ( CreateFunction ) ,
3556
3556
/// CREATE TRIGGER
@@ -8281,7 +8281,7 @@ impl fmt::Display for FunctionDeterminismSpecifier {
8281
8281
/// where within the statement, the body shows up.
8282
8282
///
8283
8283
/// [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
8285
8285
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8286
8286
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
8287
8287
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
@@ -8319,7 +8319,7 @@ pub enum CreateFunctionBody {
8319
8319
/// RETURN a + b;
8320
8320
/// ```
8321
8321
///
8322
- /// [Postgres ]: https://www.postgresql.org/docs/current/sql-createfunction.html
8322
+ /// [PostgreSQL ]: https://www.postgresql.org/docs/current/sql-createfunction.html
8323
8323
Return ( Expr ) ,
8324
8324
}
8325
8325
@@ -8625,9 +8625,9 @@ impl Display for CreateViewParams {
8625
8625
}
8626
8626
}
8627
8627
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 ]
8629
8629
///
8630
- /// [clickhouse ]: https://clickhouse.com/docs/en/engines/table-engines
8630
+ /// [ClickHouse ]: https://clickhouse.com/docs/en/engines/table-engines
8631
8631
#[ derive( Debug , Clone , PartialEq , PartialOrd , Eq , Ord , Hash ) ]
8632
8632
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
8633
8633
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
0 commit comments