Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-36296

WHERE VAR_POP(x) IS NOT NULL with indexed column results in incorrect behavior

Details

    • Bug
    • Status: Confirmed (View Workflow)
    • Major
    • Resolution: Unresolved
    • 11.8.0, 10.5, 10.6, 10.11, 11.4, 11.8
    • 10.11, 11.4, 11.8
    • Optimizer, Server
    • git rev-parse HEAD
      11a6c1b30a12c448ddfe05e1b818a6a228e90e43

    Description

      Description:
      When using the VAR_POP(x) function in a query and applying the WHERE VAR_POP(x) IS NOT NULL condition, MariaDB returns incorrect results when the column is indexed. The expected behavior is that both queries should return the same result, but the second query returns an empty set, even though the first query returns a result.
      Steps to Reproduce:

      DROP TABLE IF EXISTS `t1`;
      CREATE TABLE `t1` (
        `c1` double,
        KEY `i1` (`c1` DESC)
      ) ;
       
      INSERT INTO `t1` VALUES (48),(48);
      

      query1:

      select distinct 
        subq_0.c_0 as c_0, 
        subq_0.c_1 as c_1
      from 
        (select distinct 
              ref_0.c1 as c_0, 
              VAR_POP(c1) as c_1
            from 
              t1 as ref_0
            group by ref_0.c1 ) as subq_0
      

      output:

      +------+------+
      | c_0  | c_1  |
      +------+------+
      |   48 |    0 |
      +------+------+
      1 row in set (0.00 sec)
      

      query1:
      {code:java}
      select distinct 
        subq_0.c_0 as c_0, 
        subq_0.c_1 as c_1
      from 
        (select distinct 
              ref_0.c1 as c_0, 
              VAR_POP(c1) as c_1
            from 
              t1 as ref_0
            group by ref_0.c1 ) as subq_0
      where 
        ((subq_0.c_1) is not null)
      

      output:

      Empty set (0.00 sec)
      

      Expected Behavior: Both queries should return the same result.
      Actual Behavior:
      The first query returns the expected result, while the second query returns an empty set. This is incorrect behavior, as the result of both queries should be the same.

      Attachments

        Activity

          People

            psergei Sergei Petrunia
            orange chengzhiqiang
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.