Details
-
Task
-
Status: In Testing (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
-
2026-9, 2026-10
Description
See https://github.com/MariaDB/server/pull/4439
A simple example, without MCS:
CREATE TABLE t1 ( |
id int(20) NOT NULL, |
name varchar(16) NOT NULL default '' |
);
|
|
|
INSERT INTO t1 VALUES |
(3,'xxx'), (7,'yyy'), (4,'xxx'), (1,'zzz'), (5,'yyy'); |
|
|
select sum(id) filter (where name = 'yyy') from t1; -- should return 12 |
More tests can be found in the commit there
Attachments
Issue Links
- relates to
-
MDEV-24943 Add FILTER clause
-
- Closed
-