[MCOL-4637] select * into file from (select ... group by) produces spurious error Created: 2021-03-24 Updated: 2023-07-03 |
|
| Status: | Open |
| Project: | MariaDB ColumnStore |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 23.10 |
| Type: | Bug | Priority: | Minor |
| Reporter: | Gregory Dorman (Inactive) | Assignee: | Roman |
| Resolution: | Unresolved | Votes: | 2 |
| Labels: | None | ||
| Issue Links: |
|
||||||||
| Description |
|
drop table if exists `C2`; select * into outfile '/tmp/result.dml' from (SELECT id,intc FROM C2 WHERE intc IN (201909) GROUP BY id,intc) as sel1; |