-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Feature][transform-v2] SQL transform support schema change #8438
base: dev
Are you sure you want to change the base?
Conversation
} | ||
|
||
@Override | ||
public SchemaChangeEvent mapSchemaChangeEvent(SchemaChangeEvent event) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be implemented separately by each transform logic
e.g: add column action
- sql transform ignore:
query = "select id, name from dual"
- sql transform accepted:
query = "select * from dual"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fields may also have type changes.
…rm_sql_schema_change
|
||
transform { | ||
Sql { | ||
query = "select * from dual" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is default enabled? Would it be better to add a switch , please refer to enable-schema-evolution #8285
SQL transform support schema change.
Purpose of this pull request
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.