-
Bug
-
Resolution: Done
-
Major
-
0.3.5
-
None
suppose I have the following create table script :
CREATE TABLE t ( c1 ENUM('a','b','c') NOT NULL DEFAULT 'b';
Then, I am getting below exception while trying to parse the above ddl statement.
"io.debezium.text.ParsingException: Expecting 8|16 at line 1, column 59 but found ';': NOT NULL DEFAULT 'b' ===>> "
Note : Issue happens only when the default value is 'b'.