You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it occurs error when capturing ddl in mysql 8:
Error parsing SQL: 'CREATE DATABASE IF NOT EXISTS test CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ENCRYPTION = 'N''
Its root cause is parsing "ENCRYPTION" node error
If adding "DEFAULT" before ENCRYPTION, like 'CREATE DATABASE IF NOT EXISTS test CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci DEFAULT ENCRYPTION = 'N'' is ok
my maxwell version is 1.40.0
is there any patch for this problem? thanks
The text was updated successfully, but these errors were encountered:
you can check mysql_create_database.g4 file, and modify it yourself.
The whole parsing things are all in *.g4 files and using antlr to gen the code. You can alse refer to DDLParserTest for test show cases.
it occurs error when capturing ddl in mysql 8:
Error parsing SQL: 'CREATE DATABASE IF NOT EXISTS
test
CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ENCRYPTION = 'N''Its root cause is parsing "ENCRYPTION" node error
If adding "DEFAULT" before ENCRYPTION, like 'CREATE DATABASE IF NOT EXISTS
test
CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci DEFAULT ENCRYPTION = 'N'' is okmy maxwell version is 1.40.0
is there any patch for this problem? thanks
The text was updated successfully, but these errors were encountered: