You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "ruchir choudhry (JIRA)" <ji...@apache.org> on 2018/07/17 22:20:00 UTC

[jira] [Commented] (IGNITE-7793) SQL does not work if value has index filed which name equals to affinity key name

    [ https://issues.apache.org/jira/browse/IGNITE-7793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16547159#comment-16547159 ] 

ruchir choudhry commented on IGNITE-7793:
-----------------------------------------

[~michal.warecki] Can i take this one. 

> SQL does not work if value has index filed which name equals to affinity key name
> ---------------------------------------------------------------------------------
>
>                 Key: IGNITE-7793
>                 URL: https://issues.apache.org/jira/browse/IGNITE-7793
>             Project: Ignite
>          Issue Type: Bug
>          Components: sql
>    Affects Versions: 2.3
>            Reporter: Mikhail Cherkasov
>            Priority: Blocker
>             Fix For: 2.7
>
>
> SQL does not work if value has index filed which name equals to affinity key name:
> {code:java}
> public class AKey {
>     @AffinityKeyMapped
>     int a;
>     public AKey(int a) {
>         this.a = a;
>     }
> }
> public class AVal {
>     @QuerySqlField
>     int a;
>     public AVal(int a) {
>         this.a = a;
>     }
> }
> AKey aKey = new AKey(1);
> AVal aVal = new AVal(0);
> IgniteCache<Object, Object> cache = ignite.cache("Instrument");
> cache.put(aKey, aVal);
> SqlFieldsQuery query = new SqlFieldsQuery("select * from \"Instrument\".AVal it where it.a=?");
> List<List<?>> res = cache.query(query.setArgs(0)).getAll();
> if(res.isEmpty()) {
>     System.out.println("!!!!!!!!! FAILED !!!!!!!!!!!");
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)