Hi Igniters, I was looking into ticket IGNITE-3999 and I have a concern on this, can you please advise what will be the correct way to solve it. As of today, SQL fields are defined as setFields(LinkedHashMap<String, String> fields), with introduction of case insensitive property need to create a new POJO e.g. QueryField(String type, boolean caseInsensitive). So, to keep backward compatibility we can introduce a new method e.g. setQueryFields(LinkedHashMap<String, QueryField> fields), in my opinion it looks like counter-intuitive with existing setFields method. Another possible way, this change can be done with changing the generic type of setFields (which will not be backward compatible) and released in Ignite 2.0. Please advise on this, or maybe you have an alternative solutions?
-- Sincerely Yours Amir Akhmedov