Skip to content

Commit 1ae133b

Browse files
committed
Use markdown-link form for WITH CONNECTION doc comments
1 parent 85c9353 commit 1ae133b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/ast/ddl.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3021,8 +3021,8 @@ pub struct CreateTable {
30213021
/// Snowflake "EXTERNAL_VOLUME" clause for Iceberg tables
30223022
/// <https://docs.snowflake.com/en/sql-reference/sql/create-iceberg-table>
30233023
pub external_volume: Option<String>,
3024-
/// BigQuery `WITH CONNECTION` clause for external tables
3025-
/// <https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_external_table_statement>
3024+
/// `WITH CONNECTION` clause.
3025+
/// [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_external_table_statement)
30263026
pub with_connection: Option<ObjectName>,
30273027
/// Snowflake "BASE_LOCATION" clause for Iceberg tables
30283028
/// <https://docs.snowflake.com/en/sql-reference/sql/create-iceberg-table>

src/ast/helpers/stmt_create_table.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ pub struct CreateTableBuilder {
157157
pub base_location: Option<String>,
158158
/// Optional external volume identifier.
159159
pub external_volume: Option<String>,
160-
/// BigQuery `WITH CONNECTION` clause for external tables.
161-
/// <https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_external_table_statement>
160+
/// `WITH CONNECTION` clause.
161+
/// [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language#create_external_table_statement)
162162
pub with_connection: Option<ObjectName>,
163163
/// Optional catalog name.
164164
pub catalog: Option<String>,
@@ -492,7 +492,7 @@ impl CreateTableBuilder {
492492
self.external_volume = external_volume;
493493
self
494494
}
495-
/// Set the BigQuery `WITH CONNECTION` clause for external tables.
495+
/// Set the `WITH CONNECTION` clause.
496496
pub fn with_connection(mut self, with_connection: Option<ObjectName>) -> Self {
497497
self.with_connection = with_connection;
498498
self

0 commit comments

Comments
 (0)