You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
CREATE TABLE `tx` (
`ct_name` varchar(100) DEFAULT NULL,
`employee_name` varchar(100) DEFAULT NULL
);
select group_concat(ct_name_tt order by ct_nums_tt)
from (
select ct_name_t as ct_name_tt ,ct_nums_t as ct_nums_tt
from
(
select t1.ct_name as ct_name_t, t1.ct_name+' ' as ct_nums_t, t1.employee_name
from (
select employee_name, ct_name
from tx
group by employee_name,ct_name
) t1
) t
group by ct_name_t,ct_nums_t
) tt;
2. What did you expect to see? (Required)
The query above returns an empty result without any error.
@qw4990@XuHuaiyu since it's been quite awhile after this was fixed and probably hard to locate the PR actually fixed the issue, should we go ahead to close it?
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
The query above returns an empty result without any error.
3. What did you see instead (Required)
4. What is your TiDB version? (Required)
Release-3.0.20
The text was updated successfully, but these errors were encountered: