brachipa commented on issue #30498:
URL: https://github.com/apache/beam/issues/30498#issuecomment-2042822014

   I also tried run calcite (same version as beam uses) unit test with the same 
query and it works fine, with my fix and without my fix. I think it sounds like 
an issue in beam
   added in org.apache.calcite.test.JdbcTest
   ```
     @Test void testSimple() {
       final String sql = "select \"name\" as n1, count(*) as c\n"
           + "from \"hr\".\"emps\" group by \"name\"";
       CalciteAssert.that()
           .with(CalciteAssert.Config.REGULAR)
           .query(sql)
           .returns("N1=Theodore; C=1\nN1=Eric; C=1\nN1=Bill; 
C=1\nN1=Sebastian; C=1\n");
     }
   ```
   


-- 
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: github-unsubscr...@beam.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to