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

[jira] [Commented] (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:comment-tabpanel&focusedCommentId=15823485#comment-15823485 ] 

Vasiliy Sisko commented on IGNITE-4548:
---------------------------------------

Investigated loading of cache for type with enum columns.

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