linjianchang commented on issue #8150:
URL: https://github.com/apache/seatunnel/issues/8150#issuecomment-2514148397

   > Well, can u offer the table schema in MySQL and Hive. And do you mean 
that, the missing fields should be null? Rather than some default value?
   
   source table schema:
   CREATE TABLE test.`testtable` (
      `column1` varchar(100) NOT NULL,
      `column2` varchar(100) DEFAULT NULL,
      PRIMARY KEY (`column1`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
   
   target table schema:
   CREATE TABLE test.testtable(
     `column1` string, 
     `column2` string, 
     `column3` string)
   


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