Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.15.0
-
None
-
None
Description
Hi, Julian Hyde, add these tests in CsvTest
// fail
@Test
public void test0() throws SQLException {
sql("model", "select count(*) from EMPS group by NAME union select count(*) from EMPS group by NAME").ok();
}
// fail
@Test
public void test1() throws SQLException {
sql("model", "select sum(AGE) from EMPS group by NAME union select sum(AGE) from EMPS group by NAME").ok();
}
// this is ok
@Test
public void test2() throws SQLException {
sql("model", "select count(*), NAME from EMPS group by NAME union select count(*), NAME from EMPS group by NAME").ok();
}
and will throw exception:Caused by: org.codehaus.commons.compiler.CompileException: Line 202, Column 17: No applicable constructor/method found for actual parameters "java.lang.String, java.lang.Integer"; candidates are: "Baz$Record2_1()"
Hoping for your reply.