You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Pavel Konstantinov (JIRA)" <ji...@apache.org> on 2017/10/13 08:47:00 UTC

[jira] [Created] (IGNITE-6618) Do not show client nodes in node selection modal

Pavel Konstantinov created IGNITE-6618:
------------------------------------------

             Summary: Do not show client nodes in node selection modal
                 Key: IGNITE-6618
                 URL: https://issues.apache.org/jira/browse/IGNITE-6618
             Project: Ignite
          Issue Type: Bug
          Components: wizards
    Affects Versions: 2.1
            Reporter: Pavel Konstantinov
             Fix For: 2.3


I tried to 'Execute on Selected Node' the following query
{code}
SELECT c.id, d.id, p.id, p.salary 
FROM "c_partitioned".City c
inner join "c_partitioned".Department d
on c.id=d.CTYID 
inner join "c_partitioned".Person p
on d.id=p.depID and p.salary > 5000
inner join "c_partitioned".PersonBonus pb
on p.id=pb.perID and pb.COUNT  < 5000
where exists (select * from "c_partitioned".Person where rank > 0)
{code}

and selected a client node in the list of nodes
and got exception
{code}
General error: "java.lang.NullPointerException"; SQL statement: SELECT c.id, d.id, p.id, p.salary 
 FROM "c_partitioned".City c
 inner join "c_partitioned".Department d
 on c.id=d.CTYID 
 inner join "c_partitioned".Person p
 on d.id=p.depID and p.salary > 5000
 inner join "c_partitioned".PersonBonus pb
 on p.id=pb.perID and pb.COUNT < 5000
 where exists (select * from "c_partitioned".Person where rank > 0) [50000-195]
{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)