-
Notifications
You must be signed in to change notification settings - Fork 596
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sink): support flink dynamic table sink and http sink (#13280)
- Loading branch information
Showing
29 changed files
with
2,402 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
# CDC source basic test | ||
|
||
# enable cdc backfill in ci | ||
statement ok | ||
set cdc_backfill='true'; | ||
create source mysql_mydb with ( | ||
connector = 'mysql-cdc', | ||
hostname = 'mysql', | ||
port = '3306', | ||
username = 'root', | ||
password = '123456', | ||
database.name = 'my@db', | ||
server.id = '2' | ||
); | ||
|
||
statement ok | ||
create table products ( id INT, | ||
name STRING, | ||
description STRING, | ||
PRIMARY KEY (id) | ||
) with ( | ||
connector = 'mysql-cdc', | ||
hostname = 'mysql', | ||
port = '3306', | ||
username = 'root', | ||
password = '123456', | ||
database.name = 'my@db', | ||
table.name = 'products', | ||
server.id = '5085' | ||
); | ||
) FROM mysql_mydb TABLE '[email protected]'; | ||
|
||
|
||
statement ok | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.