Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2(EOL), 10.3(EOL), 10.4(EOL)
-
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
-
A test case not involving UDF's
create table t1 (id int, n1 int);
insert into t1 values (1,1),(2,1),(3,2),(4,4);
select max(n1) over (partition by 'abc') from t1;