Skip to content

Commit f30516e

Browse files
Google APIscopybara-github
authored andcommitted
feat: Add SQL Server dialect to bigquerymigration v2 client library
PiperOrigin-RevId: 453984088
1 parent 25c51f3 commit f30516e

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

google/cloud/bigquery/migration/v2/migration_entities.proto

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,9 @@ message MigrationTask {
133133
// The type of the task. This must be one of the supported task types:
134134
// Translation_Teradata2BQ, Translation_Redshift2BQ, Translation_Bteq2BQ,
135135
// Translation_Oracle2BQ, Translation_HiveQL2BQ, Translation_SparkSQL2BQ,
136-
// Translation_Snowflake2BQ, Translation_Netezza2BQ.
136+
// Translation_Snowflake2BQ, Translation_Netezza2BQ,
137+
// Translation_AzureSynapse2BQ, Translation_Vertica2BQ,
138+
// Translation_SQLServer2BQ.
137139
string type = 2;
138140

139141
// Output only. The current state of the task.

google/cloud/bigquery/migration/v2/translation_config.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ message Dialect {
8888

8989
// The Vertica dialect
9090
VerticaDialect vertica_dialect = 10;
91+
92+
// The SQL Server dialect
93+
SQLServerDialect sql_server_dialect = 11;
9194
}
9295
}
9396

@@ -136,6 +139,9 @@ message AzureSynapseDialect {}
136139
// The dialect definition for Vertica.
137140
message VerticaDialect {}
138141

142+
// The dialect definition for SQL Server.
143+
message SQLServerDialect {}
144+
139145
// Represents a map of name mappings using a list of key:value proto messages of
140146
// existing name to desired output name.
141147
message ObjectNameMappingList {

0 commit comments

Comments
 (0)