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

With large number of indexes optimizer chooses an inefficient plan

Details

    Description

      With a large number of indexes the optimizer picks the wrong path.

      Attachments

        Issue Links

          Activity

            Exploring this hypothesis further, I find a suspicious place in key_or.
            It has this check

              if (key2->use_count) 
            

            and this seems wrong to me: key2 here has use_count=0, but it not the root node of the SEL_ARG graph. SEL_ARG::use_count is valid only for the root nodes.
            Elsewhere in this function, one can see that the code checks key2_shared which is the value of SEL_ARG::shared of a root node.

            So I make a patch which checks key2_shared instead:

            @@ -9597,10 +9600,12 @@ key_or(RANGE_OPT_PARAM *param, SEL_ARG *key1,SEL_ARG *key2)
             
                   if (!tmp->next_key_part)
                   {
            -        if (key2->use_count)
            +       SEL_ARG *key2_next= key2->next;
            +        //if (key2->use_count)
            +        if (key2_shared)
                    {
                      SEL_ARG *key2_cpy= new SEL_ARG(*key2);
            -          if (key2_cpy)
            +          if (!key2_cpy)
                         return 0;
                       key2= key2_cpy;
                    }
            

            The whole patch for this MDEV thus becomes : https://gist.github.com/spetrunia/3eb23e92f8ab545d3180b496ce6ad24d

            and this fixes the query.

            igor any thoughts?

            psergei Sergei Petrunia added a comment - Exploring this hypothesis further, I find a suspicious place in key_or. It has this check if (key2->use_count) and this seems wrong to me: key2 here has use_count=0, but it not the root node of the SEL_ARG graph. SEL_ARG::use_count is valid only for the root nodes. Elsewhere in this function, one can see that the code checks key2_shared which is the value of SEL_ARG::shared of a root node. So I make a patch which checks key2_shared instead: @@ -9597,10 +9600,12 @@ key_or(RANGE_OPT_PARAM *param, SEL_ARG *key1,SEL_ARG *key2) if (!tmp->next_key_part) { - if (key2->use_count) + SEL_ARG *key2_next= key2->next; + //if (key2->use_count) + if (key2_shared) { SEL_ARG *key2_cpy= new SEL_ARG(*key2); - if (key2_cpy) + if (!key2_cpy) return 0; key2= key2_cpy; } The whole patch for this MDEV thus becomes : https://gist.github.com/spetrunia/3eb23e92f8ab545d3180b496ce6ad24d and this fixes the query. igor any thoughts?

            Sergei,

            I've accepted all your changes for my original fix.
            This is a new patch for 10.2.

            igor Igor Babaev (Inactive) added a comment - Sergei, I've accepted all your changes for my original fix. This is a new patch for 10.2.
            psergei Sergei Petrunia added a comment - One more question: https://lists.launchpad.net/maria-developers/msg12398.html

            Ok to push

            psergei Sergei Petrunia added a comment - Ok to push

            A fix for this bug was pushed to 10.2

            igor Igor Babaev (Inactive) added a comment - A fix for this bug was pushed to 10.2

            People

              igor Igor Babaev (Inactive)
              kjoiner Kyle Joiner (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              7 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.