yuxiqian opened a new pull request, #3579:
URL: https://github.com/apache/flink-cdc/pull/3579
Currently, it is possible to parse correct CreateTableEvents from Binlog
with the following syntax:
```sql
CREATE TABLE table1 (
id INT,
... -- other columns
PRIMARY KEY (id)
);
```
However, inlined primary key declaration syntax is not possible:
```sql
CREATE TABLE table1 (
id INT PRIMARY KEY,
... -- other columns
);
```
This should be resolved by adding missing `enterPrimaryKeyColumnConstraint`
handlers in `CustomColumnDefinitionParserListener`.
--
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]