Skip to content

Commit

Permalink
fix JDBC providers (#32985)
Browse files Browse the repository at this point in the history
* fix JDBC providers

Signed-off-by: Jeffrey Kinard <[email protected]>

* fix test failures

Signed-off-by: Jeffrey Kinard <[email protected]>

* fix typo

Signed-off-by: Jeffrey Kinard <[email protected]>

---------

Signed-off-by: Jeffrey Kinard <[email protected]>
  • Loading branch information
Polber authored and damccorm committed Nov 13, 2024
1 parent a0cbdd4 commit a33ee52
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sdks/python/apache_beam/yaml/standard_io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,21 +235,21 @@
'WriteToSqlServer': 'WriteToJdbc'
defaults:
'ReadFromMySql':
jdbcType: 'mysql'
jdbc_type: 'mysql'
'WriteToMySql':
jdbcType: 'mysql'
jdbc_type: 'mysql'
'ReadFromPostgres':
jdbcType: 'postgres'
jdbc_type: 'postgres'
'WriteToPostgres':
jdbcType: 'postgres'
jdbc_type: 'postgres'
'ReadFromOracle':
jdbcType: 'oracle'
jdbc_type: 'oracle'
'WriteToOracle':
jdbcType: 'oracle'
jdbc_type: 'oracle'
'ReadFromSqlServer':
jdbcType: 'mssql'
jdbc_type: 'mssql'
'WriteToSqlServer':
jdbcType: 'mssql'
jdbc_type: 'mssql'
underlying_provider:
type: beamJar
transforms:
Expand Down

0 comments on commit a33ee52

Please sign in to comment.