zhangxiang-ola commented on issue #7505:
URL: https://github.com/apache/seatunnel/issues/7505#issuecomment-2314204444

   > ```
   > 
   > env {
   >   parallelism = 1
   >   job.mode = "BATCH"
   > }
   > 
   > source {
   >   # This is a example source plugin **only for test and demonstrate the 
feature source plugin**
   >   FakeSource {
   >     result_table_name = "fake"
   >     parallelism = 1
   >     schema = {
   >       fields {
   >         name = "string"
   >         age = "int"
   >         id = "int"
   >       }
   >     }
   >   }
   > }
   > 
   > transform {
   >   Sql {
   >     source_table_name = "fake"
   >     result_table_name = "fake1"
   >     query = "select id, COALESCE(name, '1112') as name, age+1 as age from 
fake where id>0"
   >   }
   > }
   > 
   > sink {
   >   console {
   >     source_table_name = "fake1"
   >   }
   > }
   > ```
   > 
   > Is it convenient for you to execute this case to see if it is possible
   
   I remember this is the test configuration provided by the official 
documentation. Yes, it can be run.


-- 
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]

Reply via email to