Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.2, 10.3, 10.4
-
Component/s: Optimizer - Window functions
-
Labels:None
Description
The mtr test
create table t1 (a int); |
insert into t1 values (1),(2),(3); |
analyze format=json
|
SELECT DISTINCT BIT_OR(100) OVER () FROM t1 |
GROUP BY LEFT('2018-08-24', 100) ; |
drop table t1; |
The query runs fine without the ANALYZE format=json