dufeng1010 commented on issue #8112:
URL: https://github.com/apache/seatunnel/issues/8112#issuecomment-2513331335
if one column of source table is nullable column, but target table's
matching column is not null。you can use transform, for example:
`
```
transform {
Sql {
source_table_name = "test1"
query = "select id, COALESCE(src, '111') as src, name, age
from test1"
}
}
```
`
--
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]