Closed
Description
Hello,
found this annoying situation where a schema would be printed as
F1: Comparable
F2: String
F3: String
F4: String
F5: Comparable
F6: String
This creates 3 kinds of issues:
- If a filter is used, sometimes only one of the entries will be retrieved even if there are 2 for the given filter.
- If an update or sort operation is used this issues occurs -> class java.lang.Double cannot be cast to class java.lang.String (java.lang.Double and java.lang.String are in module java.base of loader 'bootstrap')
- If a convert{ "F1"() }.to() is called this error occurs -> Can't find converter from kotlin.Comparable<> to kotlin.String*
For situation 1 I tried to update or convert the column to a String, hence why I discovered situations 2 & 3
Thanks