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 case is:
--source include/have_udf.inc
|
CREATE FUNCTION myfunc_int RETURNS INTEGER SONAME "udf_example.so"; |
create table t1(a int , b int); |
insert into t1 values(100, 54), (200, 199); |
create view v1 as select myfunc_int(max(a) over (order by 1) , b) from t1; |
select * from v1; |
Warnings are generated on shutdown.
Attachments
Issue Links
- relates to
-
MDEV-15837 Assertion `item1->type() == Item::FIELD_ITEM && item2->type() == Item::FIELD_ITEM' failed in compare_order_elements function
-
- Closed
-