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

Condition pushdown from HAVING into WHERE

Details

    Description

      Consider a query

      SELECT agg_func(...), ... 
      FROM table ... WHERE ... 
      GROUP BY col 
      HAVING cond1(col) AND cond2(agg_func(...))

      Here, cond1(col) can be pushed down from HAVING into WHERE clause. cond2(agg_func(..)) cannot be pushed down.

      Basically, we can push down conditions that remain constant across the GROUP BY groups. Pushdown allows to filter out the whole groups.

      This task is about

      • splitting the condition that can be pushed down
      • moving from HAVING into WHERE, adjusting it appropriately

      Attachments

        Issue Links

          Activity

            psergei Sergei Petrunia created issue -
            psergei Sergei Petrunia made changes -
            Field Original Value New Value
            psergei Sergei Petrunia made changes -
            Assignee Oleksandr Byelkin [ sanja ]
            psergei Sergei Petrunia made changes -
            elenst Elena Stepanova made changes -
            Issue Type Bug [ 1 ] Task [ 3 ]
            ratzpo Rasmus Johansson (Inactive) made changes -
            Workflow MariaDB v2 [ 59312 ] MariaDB v3 [ 65366 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.2 [ 14601 ]
            psergei Sergei Petrunia made changes -
            psergei Sergei Petrunia added a comment - See also https://mariadb.com/kb/en/mariadb/moving-from-oracle-to-mariadb/#comment_1839
            monty Michael Widenius made changes -
            alvinr Alvin Richards (Inactive) made changes -
            Labels Compatibility
            alvinr Alvin Richards (Inactive) made changes -
            Epic Link MDEV-10872 [ 58182 ]
            alvinr Alvin Richards (Inactive) made changes -
            Labels Compatibility Compatibility NRE-307517
            alvinr Alvin Richards (Inactive) made changes -
            NRE Projects NRE-307517
            alvinr Alvin Richards (Inactive) made changes -
            Labels Compatibility NRE-307517 Compatibility

            Note that despite MDEV-9197 being fixed, this particular issue is not fixed on the current 10.3 tree. I was motivated to check again, because I got this question on the "optimizer status update and plans" session in New York.

            create table t20 (a int, b int, c int); 
            insert into t20 values (1,1,1), (2,2,2), (3,3,3);
            

            An example that shows HAVING->WHERE pushdown is not happening:

            explain format=json 
            select a, max(b) from t20 group by a having a<4;
             
            EXPLAIN: {
              "query_block": {
                "select_id": 1,
                "having_condition": "t20.a < 4",
                "filesort": {
                  "sort_key": "t20.a",
                  "temporary_table": {
                    "table": {
                      "table_name": "t20",
                      "access_type": "ALL",
                      "rows": 6,
                      "filtered": 100
                    }
                  }
                }
              }
            }
            

            An example shows that if one uses derived table, pushdown will happen:

            explain format=json
            select * 
            from
              (select a, max(b) from t20 group by a) TBL
            where 
              TBL.a<4;
             
            EXPLAIN: {
              "query_block": {
                "select_id": 1,
                "table": {
                  "table_name": "<derived2>",
                  "access_type": "ALL",
                  "rows": 6,
                  "filtered": 100,
                  "attached_condition": "TBL.a < 4",
                  "materialized": {
                    "query_block": {
                      "select_id": 2,
                      "filesort": {
                        "sort_key": "t20.a",
                        "temporary_table": {
                          "table": {
                            "table_name": "t20",
                            "access_type": "ALL",
                            "rows": 6,
                            "filtered": 100,
                            "attached_condition": "t20.a < 4"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
            

            psergei Sergei Petrunia added a comment - Note that despite MDEV-9197 being fixed, this particular issue is not fixed on the current 10.3 tree. I was motivated to check again, because I got this question on the "optimizer status update and plans" session in New York. create table t20 (a int, b int, c int); insert into t20 values (1,1,1), (2,2,2), (3,3,3); An example that shows HAVING->WHERE pushdown is not happening: explain format=json select a, max(b) from t20 group by a having a<4;   EXPLAIN: { "query_block": { "select_id": 1, "having_condition": "t20.a < 4", "filesort": { "sort_key": "t20.a", "temporary_table": { "table": { "table_name": "t20", "access_type": "ALL", "rows": 6, "filtered": 100 } } } } } An example shows that if one uses derived table, pushdown will happen: explain format=json select * from (select a, max(b) from t20 group by a) TBL where TBL.a<4;   EXPLAIN: { "query_block": { "select_id": 1, "table": { "table_name": "<derived2>", "access_type": "ALL", "rows": 6, "filtered": 100, "attached_condition": "TBL.a < 4", "materialized": { "query_block": { "select_id": 2, "filesort": { "sort_key": "t20.a", "temporary_table": { "table": { "table_name": "t20", "access_type": "ALL", "rows": 6, "filtered": 100, "attached_condition": "t20.a < 4" } } } } } } } }
            shagalla Galina Shalygina (Inactive) made changes -
            Assignee Oleksandr Byelkin [ sanja ] Galina Shalygina [ shagalla ]
            shagalla Galina Shalygina (Inactive) made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            shagalla Galina Shalygina (Inactive) made changes -
            shagalla Galina Shalygina (Inactive) made changes -
            Fix Version/s 10.4 [ 22408 ]
            shagalla Galina Shalygina (Inactive) made changes -
            Assignee Galina Shalygina [ shagalla ] Igor Babaev [ igor ]
            Status In Progress [ 3 ] In Review [ 10002 ]
            igor Igor Babaev (Inactive) made changes -
            Assignee Igor Babaev [ igor ] Oleksandr Byelkin [ sanja ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Support case ID not-26307
            ralf.gebhardt Ralf Gebhardt made changes -
            NRE Projects AC-2610 RM_104_others RM_104_others
            igor Igor Babaev (Inactive) made changes -
            Assignee Oleksandr Byelkin [ sanja ] Igor Babaev [ igor ]
            alice Alice Sherepa made changes -
            alice Alice Sherepa made changes -
            igor Igor Babaev (Inactive) made changes -
            Assignee Igor Babaev [ igor ] Galina Shalygina [ shagalla ]
            Status In Review [ 10002 ] Stalled [ 10000 ]

            Patches for this task was pushed into 10.4

            igor Igor Babaev (Inactive) added a comment - Patches for this task was pushed into 10.4
            igor Igor Babaev (Inactive) made changes -
            Fix Version/s 10.4.3 [ 23230 ]
            Fix Version/s 10.4 [ 22408 ]
            Resolution Fixed [ 1 ]
            Status Stalled [ 10000 ] Closed [ 6 ]
            shagalla Galina Shalygina (Inactive) made changes -
            shagalla Galina Shalygina (Inactive) made changes -
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 65366 ] MariaDB v4 [ 132510 ]

            People

              shagalla Galina Shalygina (Inactive)
              psergei Sergei Petrunia
              Votes:
              1 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

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