zhangstar333 commented on PR #18187:
URL: https://github.com/apache/doris/pull/18187#issuecomment-1491193734

   > Is there any performance impact?
   
   There should be a slight performance impact for PG array type.
   firstly read PG array result object is java.lang.array, eg:[1,2,3]
   so could get element use get(i) one by one.
   now change the java.lang.array object to string, which have all elements.
   then in BE have a cast function from string to array<>.
   
   But this can simplify the code to reduce a lot of judgment.
   so might be worth it to refactor
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to