[MCOL-4234] ORDER BY clause if not included in the GROUP BY clause fails Created: 2020-08-05 Updated: 2024-02-04 |
|
| Status: | Stalled |
| Project: | MariaDB ColumnStore |
| Component/s: | None |
| Affects Version/s: | 6.3.1 |
| Fix Version/s: | 23.10 |
| Type: | Bug | Priority: | Critical |
| Reporter: | susil.behera | Assignee: | Sergey Zefirov |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Server version: 10.5.5-MariaDB MariaDB Server |
||
| Issue Links: |
|
||||||||
| Sprint: | 2023-11, 2023-12 | ||||||||
| Description |
|
ORDER BY clause if not included in the GROUP BY clause fails on Columnstore. Repro - CREATE TABLE t1 ( INSERT INTO t1 VALUES (1,1,1,'','0000-00-00'); CREATE TABLE t2 ( INSERT INTO t2 VALUES (1,'name'); SELECT t1.spID, t2.userid, MIN(t1.score) On Innodb |