henryf1991 commented on PR #2887:
URL: https://github.com/apache/avro/pull/2887#issuecomment-2091832610
@opwvhk regarding your comment -> _I'm missing the option to override the
type name, as the annotation name suggests._
Based on my understanding the ask was the ability to allow overriding the
namespace when schema is created using java reflection. The change does this at
the moment by removing the default assignment of namepsace which was previously
done as below
```
String space = c.getPackage() == null ? "" : c.getPackage().getName();
if (c.getEnclosingClass() != null) // nested class
space = c.getEnclosingClass().getName().replace('$', '.');
```
Kindly let me know if my understanding is incorrect
--
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]