You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/01/18 04:56:38 UTC

[GitHub] [hudi] xushiyan commented on issue #4623: [SUPPORT] Delete is not working in python, parquet files

xushiyan commented on issue #4623:
URL: https://github.com/apache/hudi/issues/4623#issuecomment-1015070882


   @logan-jun hudi table name will be used to generate avro schema record name and hyphen is not a valid character in avro schema name. see https://avro.apache.org/docs/1.8.2/spec.html#names
   
   > The name portion of a fullname, record field names, and enum symbols must:
   > start with [A-Za-z_]
   > subsequently contain only [A-Za-z0-9_]
   
   make the table name start with a letter and change hyphen to underscore should resolve 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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org