Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.1.8, 10.1(EOL)
-
openbsd, windows
-
10.1.10, 10.1.11
Description
I have 4 rows in col1, yet maria 10.1 says on
select nullif(count(`lame`.`col1`),0) from lame |
that I have 7.
maria 10.0 and mysql gives 4 here.
changing to ifnull instead of nullif works fine.
To recreate this simple bug just use that line on anything you have or to recreate my testdb see below
CREATE TABLE IF NOT EXISTS `lame` ( |
`col1` varchar(50) DEFAULT NULL |
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
|
/*!40000 ALTER TABLE `lame` DISABLE KEYS */; |
INSERT INTO `lame` (`col1`) VALUES |
('hello'), |
('hello\r\n'), |
('hello'), |
('hello'); |
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
I have 4 rows in col1, yet maria 10.1 says on select nullif(count(`lame`.`col1`),0) from lame that I have 7. maria 10.0 and mysql gives 4 here. changing to ifnull instead of nullif works fine. To recreate this simple bug just use that line on anything you have or to recreate my testdb see below CREATE TABLE IF NOT EXISTS `lame` ( `col1` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40000 ALTER TABLE `lame` DISABLE KEYS */; INSERT INTO `lame` (`col1`) VALUES ('hello'), ('hello\r\n'), ('hello'), ('hello'); |
I have 4 rows in col1, yet maria 10.1 says on {code:sql} select nullif(count(`lame`.`col1`),0) from lame {code} that I have 7. maria 10.0 and mysql gives 4 here. changing to ifnull instead of nullif works fine. To recreate this simple bug just use that line on anything you have or to recreate my testdb see below {code:sql} CREATE TABLE IF NOT EXISTS `lame` ( `col1` varchar(50) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40000 ALTER TABLE `lame` DISABLE KEYS */; INSERT INTO `lame` (`col1`) VALUES ('hello'), ('hello\r\n'), ('hello'), ('hello'); {code} |
Status | Open [ 1 ] | Confirmed [ 10101 ] |
Component/s | Optimizer [ 10200 ] | |
Component/s | OTHER [ 10125 ] | |
Fix Version/s | 10.1 [ 16100 ] | |
Affects Version/s | 10.1 [ 16100 ] | |
Affects Version/s | 10.1.9 [ 20301 ] | |
Assignee | Alexander Barkov [ bar ] | |
Labels | regression |
Sprint | 10.1.10 [ 24 ] |
Status | Confirmed [ 10101 ] | In Progress [ 3 ] |
Assignee | Alexander Barkov [ bar ] | Sergei Golubchik [ serg ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Summary | (NULLIF(table.col)0) gives wrong result on 10.1.x | (NULLIF(count(table.col)), 0) gives wrong result on 10.1.x |
Rank | Ranked higher |
Sprint | 10.1.10 [ 24 ] | 10.1.10, 10.1.11 [ 24, 30 ] |
Rank | Ranked lower |
Assignee | Sergei Golubchik [ serg ] | Alexander Barkov [ bar ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Assignee | Alexander Barkov [ bar ] | Sergei Golubchik [ serg ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Sergei Golubchik [ serg ] | Alexander Barkov [ bar ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Fix Version/s | 10.1.11 [ 21202 ] | |
Fix Version/s | 10.1 [ 16100 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Comment | [ After what took almost a year to resolve, the latest update reverts the fix. ] |
Workflow | MariaDB v3 [ 72727 ] | MariaDB v4 [ 149862 ] |
might add that the mediacenter Kodi uses nullif in its views, so quite many are affected by this.