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

Ted Yu commented on FLINK-10468:
--------------------------------

That was why I started the issue title with Potential.

Even if this is the case, assigning {{channels}} and breaking would make the 
code easier to understand for other people.

Or, a comment should be added stating the fact.

> Potential missing break for PARTITION_CUSTOM in OutputEmitter ctor
> ------------------------------------------------------------------
>
>                 Key: FLINK-10468
>                 URL: https://issues.apache.org/jira/browse/FLINK-10468
>             Project: Flink
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Priority: Minor
>
> Here is related code:
> {code}
>     switch (strategy) {
>     case PARTITION_CUSTOM:
>       extractedKeys = new Object[1];
>     case FORWARD:
> {code}
> It seems a 'break' is missing prior to FORWARD case.
> {code}
>     if (strategy == ShipStrategyType.PARTITION_CUSTOM && partitioner == null) 
> {
>       throw new NullPointerException("Partitioner must not be null when the 
> ship strategy is set to custom partitioning.");
>     }
> {code}
> Since the above check is for PARTITION_CUSTOM, it seems we can place the 
> check in the switch statement.



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

Reply via email to