amorynan commented on code in PR #15966: URL: https://github.com/apache/doris/pull/15966#discussion_r1084963919
########## fe/fe-core/src/main/java/org/apache/doris/catalog/MapType.java: ########## @@ -98,4 +134,16 @@ public void toThrift(TTypeDesc container) { keyType.toThrift(container); valueType.toThrift(container); } + + @Override + public TColumnType toColumnTypeThrift() { + TColumnType thrift = new TColumnType(); + thrift.type = PrimitiveType.MAP.toThrift(); Review Comment: Yes, I think this is only map column declare . And I refer to ArrayType which not process its nested child column type too. -- 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