You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2018/05/16 07:53:00 UTC

[jira] [Commented] (FLINK-8428) Implement stream-stream non-window left outer join

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

ASF GitHub Bot commented on FLINK-8428:
---------------------------------------

Github user twalthr commented on a diff in the pull request:

    https://github.com/apache/flink/pull/5327#discussion_r188531785
  
    --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/nodes/datastream/DataStreamJoin.scala ---
    @@ -176,14 +179,34 @@ class DataStreamJoin(
           body,
           returnType)
     
    -    val coMapFun =
    -      new NonWindowInnerJoin(
    -        leftSchema.typeInfo,
    -        rightSchema.typeInfo,
    -        CRowTypeInfo(returnType),
    -        genFunction.name,
    -        genFunction.code,
    -        queryConfig)
    +    val coMapFun = joinType match {
    +      case JoinRelType.INNER =>
    +        new NonWindowInnerJoin(
    +          leftSchema.typeInfo,
    +          rightSchema.typeInfo,
    +          CRowTypeInfo(returnType),
    +          genFunction.name,
    +          genFunction.code,
    +          queryConfig)
    +      case JoinRelType.LEFT if joinInfo.isEqui =>
    +        new NonWindowLeftRightJoin(
    +          leftSchema.typeInfo,
    +          rightSchema.typeInfo,
    +          CRowTypeInfo(returnType),
    +          genFunction.name,
    +          genFunction.code,
    +          joinType == JoinRelType.LEFT,
    +          queryConfig)
    +      case JoinRelType.LEFT =>
    --- End diff --
    
    We can also do it as part of FLINK-8429.


> Implement stream-stream non-window left outer join
> --------------------------------------------------
>
>                 Key: FLINK-8428
>                 URL: https://issues.apache.org/jira/browse/FLINK-8428
>             Project: Flink
>          Issue Type: Sub-task
>          Components: Table API &amp; SQL
>            Reporter: Hequn Cheng
>            Assignee: Hequn Cheng
>            Priority: Major
>
> Implement stream-stream non-window left outer join for sql/table-api. A simple design doc can be foundĀ [here|https://docs.google.com/document/d/1u7bJHeEBP_hFhi8Jm4oT3FqQDOm2pJDqCtq1U1WMHDo/edit?usp=sharing]



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