JiajunBernoulli commented on code in PR #3334:
URL: https://github.com/apache/calcite/pull/3334#discussion_r1278270579
##########
core/src/test/java/org/apache/calcite/test/SqlToRelConverterTest.java:
##########
@@ -3076,16 +3076,14 @@ void checkCorrelatedMapSubQuery(boolean expand) {
sql(sql).ok();
}
- @Disabled("CALCITE-985")
@Test void testMerge() {
- final String sql = "merge into emp as target\n"
- + "using (select * from emp where deptno = 30) as source\n"
- + "on target.empno = source.empno\n"
- + "when matched then\n"
- + " update set sal = sal + source.sal\n"
- + "when not matched then\n"
- + " insert (empno, deptno, sal)\n"
- + " values (source.empno, source.deptno, source.sal)";
+ final String sql = "merge into empnullables e "
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]