2020-05-01 09:19:48 UTC - Gilles Barbier: Hi, when I use a child class with variable hiding , ex. ```abstract class Test { protected String id;
public Teest(String id) { super(); this.id = id; } } public class Teest2 extends Test { private String id; public Teest2(String id) { super(id); } }``` I have an error when getting schema: ```JSONSchema.of(Teest2::class) <http://org.apache.pulsar.shade.org|org.apache.pulsar.shade.org>.apache.avro.AvroTypeException: class Test contains two fields named: private final java.lang.String Test.id``` I guess that the simplest way would be to avoid variable hiding, but the issue is that I’m using kotlin and the class is generated. This prevents me to use any class abstraction in message. Should I open a bug for this? ---- 2020-05-01 09:22:24 UTC - Raffaele: @Raffaele has joined the channel ---- 2020-05-01 17:11:43 UTC - Jerry Peng: FYI there is some incorrect information on this page: <https://pulsar.apache.org/docs/en/2.5.1/concepts-clients/#non-partitioned-topics-only> Users CAN use the Reader API to read partitioned topics. Any volunteers to fix the documentation :smile: ? ---- 2020-05-01 18:15:22 UTC - Jon Cordeiro: @Jon Cordeiro has joined the channel ---- 2020-05-01 23:01:28 UTC - Sijie Guo: Please create an issue, but I am feeling it might be an Avro issue ----