Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/3141#discussion_r96843797 --- Diff: flink-libraries/flink-table/src/test/scala/org/apache/flink/table/api/scala/batch/sql/JoinITCase.scala --- @@ -375,4 +395,62 @@ class JoinITCase( Assert.assertEquals(0, result) } + + @Test(expected = classOf[TableException]) + def testRightOuterJoinWithNonEquiJoinPredicate(): Unit = { + + val env = ExecutionEnvironment.getExecutionEnvironment + val tEnv = TableEnvironment.getTableEnvironment(env, config) + tEnv.getConfig.setNullCheck(true) + + val sqlQuery = "SELECT c, g FROM Table3 RIGHT OUTER JOIN Table5 ON b = e and a > d" + + val ds1 = CollectionDataSets.getSmall3TupleDataSet(env).toTable(tEnv).as('a, 'b, 'c) + val ds2 = CollectionDataSets.get5TupleDataSet(env).toTable(tEnv).as('d, 'e, 'f, 'g, 'h) + tEnv.registerTable("Table3", ds1) + tEnv.registerTable("Table5", ds2) + + tEnv.sql(sqlQuery).toDataSet[Row].collect() + + val results = tEnv.sql(sqlQuery).toDataSet[Row].collect() --- End diff -- This line can be removed
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---