Details

    • Sub-task
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 1.25.0
    • None
    • core
    • None

    Description

      https://github.com/apache/calcite/blob/64a0ca71038da14f0f883f169aa95df00d909e06/core/src/main/java/org/apache/calcite/interpreter/JoinNode.java#L85

          if (rel.getJoinType() == JoinRelType.FULL) {
            // send un-match rows for full join on right source
            List<Row> empty = new ArrayList<>();
            for (Row row: innerRows) { // <-- NPE here
              if (matchRowSet.contains(row)) {
                continue;
              }
              doSend(row, empty, JoinRelType.RIGHT);
            }
          }
      

      Attachments

        Activity

          People

            Unassigned Unassigned
            vladimirsitnikov Vladimir Sitnikov
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: