File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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>
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments