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

Navis commented on TAJO-1422:
-----------------------------

I've seen that in LeftOuter-Hash join case.

> Investigate the case where fragments == null in SeqScanExec
> -----------------------------------------------------------
>
>                 Key: TAJO-1422
>                 URL: https://issues.apache.org/jira/browse/TAJO-1422
>             Project: Tajo
>          Issue Type: Improvement
>            Reporter: Hyunsik Choi
>            Priority: Minor
>
> See the following part in SeqScanExec. Intuitively, we don't need to make and 
> execute Task if fragments is null. But, the current code requires null check. 
> We need to investigate its essential cause, and we should remove this case if 
> possible.
> {code:title=SeqScanExec.java}
>     if (fragments != null) {
>       if (fragments.length > 1) {
>         this.scanner = new MergeScanner(context.getConf(), 
> plan.getPhysicalSchema(), meta,
>             FragmentConvertor.convert(context.getConf(), fragments), projected
>         );
> {code}



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

Reply via email to