Skip to content

Commit

Permalink
feat: Add SQL Server dialect to bigquerymigration v2 client library
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 453984088
  • Loading branch information
Google APIs authored and Copybara-Service committed Jun 9, 2022
1 parent 25c51f3 commit f30516e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion google/cloud/bigquery/migration/v2/migration_entities.proto
Expand Up @@ -133,7 +133,9 @@ message MigrationTask {
// The type of the task. This must be one of the supported task types:
// Translation_Teradata2BQ, Translation_Redshift2BQ, Translation_Bteq2BQ,
// Translation_Oracle2BQ, Translation_HiveQL2BQ, Translation_SparkSQL2BQ,
// Translation_Snowflake2BQ, Translation_Netezza2BQ.
// Translation_Snowflake2BQ, Translation_Netezza2BQ,
// Translation_AzureSynapse2BQ, Translation_Vertica2BQ,
// Translation_SQLServer2BQ.
string type = 2;

// Output only. The current state of the task.
Expand Down
6 changes: 6 additions & 0 deletions google/cloud/bigquery/migration/v2/translation_config.proto
Expand Up @@ -88,6 +88,9 @@ message Dialect {

// The Vertica dialect
VerticaDialect vertica_dialect = 10;

// The SQL Server dialect
SQLServerDialect sql_server_dialect = 11;
}
}

Expand Down Expand Up @@ -136,6 +139,9 @@ message AzureSynapseDialect {}
// The dialect definition for Vertica.
message VerticaDialect {}

// The dialect definition for SQL Server.
message SQLServerDialect {}

// Represents a map of name mappings using a list of key:value proto messages of
// existing name to desired output name.
message ObjectNameMappingList {
Expand Down

0 comments on commit f30516e

Please sign in to comment.