morningman commented on code in PR #13858: URL: https://github.com/apache/doris/pull/13858#discussion_r1011142098
########## fe/fe-core/src/main/java/org/apache/doris/analysis/NullLiteral.java: ########## @@ -101,6 +101,11 @@ public String getStringValue() { return "NULL"; } + @Override + public String getStringValueForArray() { + return "null"; Review Comment: the null value inside an array is represented as "null", for exampe: `[null, null]`. Not same as other primitive type to represent as `\N`. I will add some comment to this method. -- 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