You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Vasiliy Sisko (JIRA)" <ji...@apache.org> on 2017/01/16 05:41:27 UTC

[jira] [Created] (IGNITE-4548) Invalid mapping of enum to varchar on load/store operation.

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)