You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "N Campbell (JIRA)" <ji...@apache.org> on 2017/06/30 19:56:00 UTC

[jira] [Created] (DRILL-5642) Error: VALIDATION ERROR: null

N Campbell created DRILL-5642:
---------------------------------

             Summary: Error: VALIDATION ERROR: null
                 Key: DRILL-5642
                 URL: https://issues.apache.org/jira/browse/DRILL-5642
             Project: Apache Drill
          Issue Type: Improvement
          Components:  Server
    Affects Versions: 1.10.0
         Environment: Drill 1.10
            Reporter: N Campbell



Following statement will fail

Error: VALIDATION ERROR: null

select TJOIN1.C1,TJOIN2.C2 from 
( 
 values 
( 0, 10, 15),
( 1, 20, 25),
( 2, cast(NULL as integer), 50)
 ) TJOIN1 (RNUM, C1, C2)
left outer join 
(
values 
( 0, 10, 'BB'),
( 1, 15, 'DD'),
( 2, cast(NULL as integer), 'EE'),
( 3, 10, 'FF')
) TJOIN2 (RNUM, C1,C2)
on ( TJOIN1.C1 = TJOIN2.C1 and TJOIN1.C2 < ( select count(*) from (values (1)) TX (RNUM) ) )



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