[jira] [Created] (IGNITE-4531) Update DML operation not working for QuerySQLField with name

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-4531) Update DML operation not working for QuerySQLField with name

Anton Vinogradov (Jira)
David Albrecht created IGNITE-4531:
--------------------------------------

             Summary: Update DML operation not working for QuerySQLField with name
                 Key: IGNITE-4531
                 URL: https://issues.apache.org/jira/browse/IGNITE-4531
             Project: Ignite
          Issue Type: Bug
    Affects Versions: 1.8
            Reporter: David Albrecht
            Priority: Critical


After putting a java class Operation with

    @QuerySqlField(name = "operationNumber", index = true)
    private String mOperationNumber;

in the cache. Via debug console I can see the following fields:

_val:

Operation [... ,mUuid=FF42930B6D3242B5A0B9D631E017027E, mOperationNumber = 0010, ...]

and a column named: OPERATIONNUMBER with value 0010.

When I use
{code}
UPDATE Operation set operationNumber =  ? WHERE mUuid =  ?
{code}

with the arguments

[SCHEDULED, FF42930B6D3242B5A0B9D631E017027E]

I can see the following values:

Operation [... ,mUuid=FF42930B6D3242B5A0B9D631E017027E, mOperationNumber = 0010, operationNumber=SCHEDULED, ...]

and a column named: OPERATIONNUMBER with value 0010.

So the column 'OPERATIONNUMBER' and the field 'mOperationNumber' is not updated.





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