You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Andrey Novikov (JIRA)" <ji...@apache.org> on 2017/01/25 08:15:26 UTC

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

     [ https://issues.apache.org/jira/browse/IGNITE-4548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrey Novikov closed IGNITE-4548.
----------------------------------
    Assignee:     (was: Andrey Novikov)

> 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
>             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)