qzsee commented on code in PR #10947: URL: https://github.com/apache/doris/pull/10947#discussion_r926224908
########## fe/fe-core/src/test/java/org/apache/doris/nereids/trees/expressions/ExpressionParserTest.java: ########## @@ -137,4 +137,13 @@ public void testSortClause() throws Exception { String sort1 = "select a from test order by 1"; assertSql(sort1); } + + @Test + public void testCaseWhen() throws Exception { + String caseWhen = "select case a when 1 then 2 else 3 end from test"; + assertSql(caseWhen); + + String caseWhen2 = "select case when a = 1 then 2 else 3 end from test"; Review Comment: I think should another add some ut case. add complex expr after then and else? -- 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...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org