Skip to content

Commit

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



* fix test failures



* fix typo



---------

Signed-off-by: Jeffrey Kinard <[email protected]>
Co-authored-by: Jeff Kinard <[email protected]>
  • Loading branch information
damccorm and Polber authored Nov 13, 2024
1 parent 7113db5 commit 420ca5b
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 420ca5b

Please sign in to comment.