doris-website
doris-website copied to clipboard
Apache Doris Website
## Versions - [x] dev - [ ] 3.x - [ ] 2.1 - [ ] 2.0 ## Languages - [x] Chinese - [x] English ## Docs Checklist - [...
## Versions - [x] dev - [x] 3.x - [ ] 2.1 - [ ] 2.0 ## Languages - [x] Chinese - [x] English ## Docs Checklist - [ ]...
doris pr: https://github.com/apache/doris/pull/50140 ## Versions - [x] dev - [x] 3.0 - [ ] 2.1 - [ ] 2.0 ## Languages - [x] Chinese - [x] English ## Docs Checklist...
## Versions - [ ] dev - [ ] 3.0 - [ ] 2.1 - [ ] 2.0 ## Languages - [ ] Chinese - [ ] English ## Docs...
## Versions - [ ] dev - [ ] 3.0 - [ ] 2.1 - [ ] 2.0 ## Languages - [ ] Chinese - [ ] English ## Docs...
## Versions - [ x ] dev - [ ] 3.0 - [ ] 2.1 - [ ] 2.0 ## Languages - [ x ] Chinese - [ x ]...
Path:/docs/dev/sql-manual/sql-functions/combinators/foreach Allowed data types and function behavior when not all arrays have the same exact size should be documented.
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...
Path:/zh-CN/docs/2.1/table-design/data-model/aggregate AGG_STATE示例错误 insert into aggstate select 3,sum_union(k2),group_concat_union(k3) from aggstate; 修改:insert into aggstate select 3,sum(v1),group_concat_union(v2) from aggstate; select sum_merge(k2) , group_concat_merge(k3)from aggstate; 修改select sum(v1) , group_concat_merge(v2) from aggstate; select sum_merge(k2) ,...