You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Alexander Paschenko (JIRA)" <ji...@apache.org> on 2016/12/02 22:53:58 UTC

[jira] [Updated] (IGNITE-4363) Inner properties mutation broken in SQL UPDATE

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

Alexander Paschenko updated IGNITE-4363:
----------------------------------------
    Summary: Inner properties mutation broken in SQL UPDATE  (was: Inner properties mutation broken in DML)

> Inner properties mutation broken in SQL UPDATE
> ----------------------------------------------
>
>                 Key: IGNITE-4363
>                 URL: https://issues.apache.org/jira/browse/IGNITE-4363
>             Project: Ignite
>          Issue Type: Bug
>          Components: binary, SQL
>    Affects Versions: 1.8
>            Reporter: Alexander Paschenko
>            Assignee: Alexander Paschenko
>             Fix For: 1.8
>
>
> Discovered in course of working on IGNITE-4340.
> Say, we have following type for cache values
> {code:java}
> static final class AllTypes implements Serializable {
>         /**
>          * Data Long.
>          */
>         @QuerySqlField
>         Long longCol;
>         /**
>          * Inner type object.
>          */
>         @QuerySqlField
>         InnerType innerTypeCol;
>         /** */
>         static final class InnerType implements Serializable {
>             /** */
>             @QuerySqlField
>             Long innerLongCol;
>             /** */
>             @QuerySqlField
>             String innerStrCol;
>        }
> }
> {code}
> D



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)