morningman commented on code in PR #49036:
URL: https://github.com/apache/doris/pull/49036#discussion_r2010197741


##########
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java:
##########
@@ -4511,8 +4511,10 @@ public void checkSerdeDialect(String serdeDialect) {
             throw new UnsupportedOperationException("serdeDialect value is 
empty");
         }
 
-        if (!serdeDialect.equalsIgnoreCase("doris") && 
!serdeDialect.equalsIgnoreCase("presto")
-                && !serdeDialect.equalsIgnoreCase("trino")) {
+        if (!serdeDialect.equalsIgnoreCase("doris")
+                && !serdeDialect.equalsIgnoreCase("presto")
+                && !serdeDialect.equalsIgnoreCase("trino")
+                && !serdeDialect.equalsIgnoreCase("hive")) {
             LOG.warn("serdeDialect value is invalid, the invalid value is {}", 
serdeDialect);
             throw new UnsupportedOperationException(
                     "sqlDialect value is invalid, the invalid value is " + 
serdeDialect);

Review Comment:
   ```suggestion
                       "serde dialect value is invalid, the invalid value is " 
+ serdeDialect);
   ```



-- 
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

Reply via email to