vvivekiyer commented on code in PR #8518: URL: https://github.com/apache/pinot/pull/8518#discussion_r852297661
########## pinot-common/src/test/java/org/apache/pinot/sql/parsers/CalciteSqlCompilerTest.java: ########## @@ -79,13 +79,9 @@ public void testCanonicalFunctionName() { public void testCaseWhenStatements() { //@formatter:off PinotQuery pinotQuery = CalciteSqlParser.compileToPinotQuery( - "SELECT OrderID, Quantity,\n" - + "CASE\n" - + " WHEN Quantity > 30 THEN 'The quantity is greater than 30'\n" - + " WHEN Quantity = 30 THEN 'The quantity is 30'\n" - + " ELSE 'The quantity is under 30'\n" - + "END AS QuantityText\n" - + "FROM OrderDetails"); + "SELECT OrderID, Quantity,\n" + "CASE\n" + " WHEN Quantity > 30 THEN 'The quantity is greater than 30'\n" + + " WHEN Quantity = 30 THEN 'The quantity is 30'\n" + " ELSE 'The quantity is under 30'\n" + + "END AS QuantityText\n" + "FROM OrderDetails"); 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org