amorynan opened a new pull request, #39931:
URL: https://github.com/apache/doris/pull/39931

   ## Proposed changes
   before this pr:
   ```
   drop table if exists t003;
   create table t003 (a bigint, b json not null) properties 
("replication_num"="1");
   insert into t003 values (1, '{"a":1,"b":2}');
   select a, map_agg("k1", json_quote(b)) from t003 group by a;
   
   [17:47]>  select a, map_agg("k1", json_quote(b)) from t003 group by a;
   (1105, 'errCode = 2, detailMessage = (172.20.48.119)[INTERNAL_ERROR]Function 
json_quote get failed, expr is VectorizedFnCall[json_quote](arguments=(CAST 
b(JSONB) TO String),return=Nullable(String)) and return type is 
Nullable(String).')
   ``` 
   after pr , we can carry on it 
   Issue Number: close #xxx
   
   <!--Describe your changes.-->
   
   


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