You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@avro.apache.org by GitBox <gi...@apache.org> on 2022/09/01 06:17:09 UTC

[GitHub] [avro] clesaec commented on pull request #1527: AVRO-3377: Deserialization of record of mangled Java class throws ClassCastException

clesaec commented on PR #1527:
URL: https://github.com/apache/avro/pull/1527#issuecomment-1233794098

   PR approved (_as code for mangle is moved from SpecificCompiler to SpecificData_) with some remarks : 
   
   - Mangle can transform word with point as "dummy.int.float" into "dummy.int$.float$" for example, as unmangle method only apply on last char (==> "dummy.int$.float" in our case).
   - Mangle only applies to reserved word, so transform "dummy$" to itself, while unmangle apply to all word (==> "dummy" in our case).
   - As it's a lot of static method, it may could be extract in external class.


-- 
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: issues-unsubscribe@avro.apache.org

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