chaorongzhi commented on code in PR #4380:
URL:
https://github.com/apache/incubator-seatunnel/pull/4380#discussion_r1142964642
##########
docs/en/connector-v2/sink/Jdbc.md:
##########
@@ -201,12 +201,13 @@ CDC(Change data capture) event
```
sink {
jdbc {
- url = "jdbc:mysql://localhost:3306/test"
+ url = "jdbc:mysql://localhost:3306"
driver = "com.mysql.cj.jdbc.Driver"
user = "root"
password = "123456"
- table = sink_table
+ database = "sink_database"
+ table = "sink_table"
primary_keys = ["key1", "key2", ...]
Review Comment:
> What's the advantage of this change?
The parameters of the dev branch connector have been changed, but not in the
doc examples.These two changes were discovered when I was using the dev branch
of SeaTunnel.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]