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

recursive query silently discards result after an arbitrary (?) threshold

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Not a Bug
    • 10.6.8
    • N/A
    • Optimizer - CTE
    • None
    • mysql Ver 15.1 Distrib 10.6.8-MariaDB, for debian-linux-gnu (x86_64) using EditLine wrapper

    Description

      To reproduce:

      drop sequence if exists xxx;
      create sequence xxx;
      select count(*) from (with recursive t (x) as (select 1 x union all select x + 1 from t where x < 10000) select next value for xxx from t);
      

      This returns 1001, while 10000 is expected. When replacing 10000 in the 'where' clause with a number not larger than 1001, the result matches expectation.

      Usecase: inner query is used to fetch N next numbers from a sequence in one statement. For "smaller" numbers it works without problems.

      Displayed behavior is very bad. I suspect there might be some reason and the threshold is configurable somewhere, but the application using the database has no way to know it. Returning too few rows without any errors or even warnings results in a hard-to-understand bug in our application, with practically no way to debug it.

      Attachments

        Activity

          serg Sergei Golubchik added a comment - https://mariadb.com/kb/en/server-system-variables/#max_recursive_iterations

          > used to prevent infinite loops in recursive CTEs

          That's a noble goal, presumingly it guards against bugs. However, in this case it's not a bug and I expect it to give correct result even if I specify 1000000. By silently returning something that I don't expect, MariaDB effectively triggers a bug downstream. E.g. Oracle Database also has an arbitrary limit, but it fails hard (with an exception) if it is hit. This is infinitely better than returning a wrong result, because I immediately know that something is wrong instead of letting it fail later in an unpredictable way.

          doublep Paul Pogonyshev added a comment - > used to prevent infinite loops in recursive CTEs That's a noble goal, presumingly it guards against bugs. However, in this case it's not a bug and I expect it to give correct result even if I specify 1000000. By silently returning something that I don't expect, MariaDB effectively triggers a bug downstream. E.g. Oracle Database also has an arbitrary limit , but it fails hard (with an exception) if it is hit. This is infinitely better than returning a wrong result, because I immediately know that something is wrong instead of letting it fail later in an unpredictable way.
          • it's intentional and documented behavior, not a bug.
          • the result is not wrong, it's correct, because the definition of "correctness" includes the limit set by @@max_recursive_iterations. The result would've been incorrect, if it included 100 000 rows, with @@max_recursive_iterations being 10 000.
          • you're free to set @@max_recursive_iterations to any value you want, to 100 000 or even to 1 000 000.
          serg Sergei Golubchik added a comment - it's intentional and documented behavior, not a bug. the result is not wrong, it's correct, because the definition of "correctness" includes the limit set by @@max_recursive_iterations. The result would've been incorrect, if it included 100 000 rows, with @@max_recursive_iterations being 10 000. you're free to set @@max_recursive_iterations to any value you want, to 100 000 or even to 1 000 000.

          Yeah, just add `max_select_rows`, set it 10000 and document. Then it will not be a bug when you silently return 10000 rows from a `select *` on a million-row table. And not wrong.

          doublep Paul Pogonyshev added a comment - Yeah, just add `max_select_rows`, set it 10000 and document. Then it will not be a bug when you silently return 10000 rows from a `select *` on a million-row table. And not wrong.
          serg Sergei Golubchik added a comment - https://mariadb.com/kb/en/server-system-variables/#sql_select_limit

          Perfect. Just strange that is not 1000.

          doublep Paul Pogonyshev added a comment - Perfect. Just strange that is not 1000.

          People

            serg Sergei Golubchik
            doublep Paul Pogonyshev
            Votes:
            0 Vote for this issue
            Watchers:
            2 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.