Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Cannot Reproduce
-
10.3.14, 10.3.16, 10.4.4
-
None
-
C:\Users\lukas> ver
Microsoft Windows [Version 10.0.17134.706]
select version();
version() |
------------------------------------|
10.4.4-MariaDB-1:10.4.4+maria~bionic|
Description
I'm running MariaDB in Docker on Windows. Running the following script crashes the server:
drop table if exists t;
|
create table t (i int, j int);
|
insert into t values (1, 1), (2, 1), (3, 2), (4, 2);
|
 |
select
|
i,
|
max(i) over (partition by (select 1))
|
from t
|
order by i asc;
|
Attachments
Issue Links
- is part of
-
MCOL-3434 Certain window function queries crash mysqld
- Closed
- relates to
-
MDEV-15837 Assertion `item1->type() == Item::FIELD_ITEM && item2->type() == Item::FIELD_ITEM' failed in compare_order_elements function
- Closed
-
MDEV-19270 function as Window function causes debug assert
- Closed