dewanshshekhar opened a new pull request, #2943:
URL: https://github.com/apache/doris-website/pull/2943

   The AGG_STATE example in zh-CN/docs/2.1/table-design/data-model/aggregate.md 
 was using non-existent columns `k2` and `k3`, which do not match the table 
schema.  
   
   Updated the example queries to use the correct columns `v1` and `v2`:
   
   ```sql
   insert into aggstate select 3,sum(v1),group_concat_union(v2) from aggstate;
   
   select sum(v1), group_concat_merge(v2) from aggstate;
   
   select sum(v1), group_concat_merge(v2) from aggstate where k1 != 2;
   
   ## Versions 
   
   - [ ] dev
   - [ ] 3.0
   - [ ] 2.1
   - [ ] 2.0
   
   ## Languages
   
   - [ ] Chinese
   - [ ] English
   
   ## Docs Checklist
   
   - [ ] Checked by AI
   - [ ] Test Cases Built
   


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