mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-17 13:06:47 +02:00
feat: Add SQL Server dialect to bigquerymigration v2 client library
PiperOrigin-RevId: 453984088
This commit is contained in:
parent
25c51f31e4
commit
f30516e75f
2 changed files with 9 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -88,6 +88,9 @@ message Dialect {
|
|||
|
||||
// The Vertica dialect
|
||||
VerticaDialect vertica_dialect = 10;
|
||||
|
||||
// The SQL Server dialect
|
||||
SQLServerDialect sql_server_dialect = 11;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue