You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by "Shaofeng SHI (JIRA)" <ji...@apache.org> on 2018/01/03 05:40:00 UTC

[jira] [Resolved] (KYLIN-3081) Ineffective null check in CubeController#cuboidsExport

     [ https://issues.apache.org/jira/browse/KYLIN-3081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shaofeng SHI resolved KYLIN-3081.
---------------------------------
    Resolution: Fixed

> Ineffective null check in CubeController#cuboidsExport
> ------------------------------------------------------
>
>                 Key: KYLIN-3081
>                 URL: https://issues.apache.org/jira/browse/KYLIN-3081
>             Project: Kylin
>          Issue Type: Bug
>          Components: Metadata
>            Reporter: Ted Yu
>            Assignee:  Kaige Liu
>            Priority: Minor
>             Fix For: v2.3.0
>
>         Attachments: KYLIN-3081-fix-potential-npe-02.patch
>
>
> {code}
>         if (cuboidList == null || cuboidList.isEmpty()) {
>             logger.warn("Cannot get recommend cuboid list for cube " + cubeName);
>         }
>         if (cuboidList.size() < top) {
>             logger.info("Only recommend " + cuboidList.size() + " cuboids less than topn " + top);
>         }
> {code}
> cuboidList.size() may result in NPE because the null check above doesn't have effect.



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