Vasiliy Sisko created IGNITE-4548: ------------------------------------- Summary: Invalid mapping of enum to varchar on load/store operation. Key: IGNITE-4548 URL: https://issues.apache.org/jira/browse/IGNITE-4548 Project: Ignite Issue Type: Bug Components: cache Affects Versions: 1.9 Reporter: Vasiliy Sisko Assignee: Vasiliy Sisko Fix For: 1.9
http://stackoverflow.com/questions/41609207/ignite-cachejdbcpojostorefactory-using-enum-fields On load of data when type contain enum field that mapped in varchar in database sometimes kind of type is incorrectly detected as binary. Pojo contain string transformer methods. {code} private OrderSide side; // OrderSide is an enum public String getSideAsString() { return this.side.name(); } public void setSideAsString(String s) { this.side = OrderSide.valueOf(s); } {code} and enum column described as: {code} new JdbcTypeField(Types.VARCHAR, "side", String.class, "sideAsString") {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)