-
Notifications
You must be signed in to change notification settings - Fork 287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
generate column doesn't show in DML event #11704
Comments
@benmeadowcroft PTAL |
The root reason is that the message doesn't include the generated flag. If the generated column is sent downstream, the consumer can't distinguish generated columns, and raises an error like |
/severity major |
There are two kinds of generated columns: stored and virtual. A stored generated column is computed when it is written (inserted or updated) and occupies storage as if it were a normal column. A virtual generated column occupies no storage and is computed when it is read. Message carries stored generated column but not virtual generated column. |
What did you do?
What did you expect to see?
All column data
What did you see instead?
Column B and C are missing.
Versions of the cluster
TiCDC version (execute
cdc version
):master
The text was updated successfully, but these errors were encountered: