jasondavindev edited a comment on issue #4501:
URL: https://github.com/apache/hudi/issues/4501#issuecomment-1004362898


   I noticed when use `withColumn` the final schema is changed. `is_syncing` 
column hasn't default value.
   ```python
   payment_type_cash \
       .withColumn('is_syncing', lit('true'))
   ```
   
   From
   ```json
   {
       "name" : "is_syncing",
       "type" : [ "null", "string" ],
       "default" : null
   }
   ```
   
   To
   ```json
   {
       "name" : "is_syncing",
       "type" : "string"
   }
   ```
   Schemas from hudi logs
   
   Could be this the problem?


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