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

different results when using CTE and big_tables=1

    XMLWordPrintable

Details

    Description

      MariaDB [test]> set big_tables=0;
      Query OK, 0 rows affected (0.00 sec)
       
      MariaDB [test]> with recursive qn as (select 123 as a union all select 1+a from qn where a<130) select * from qn;
      +-----+
      | a   |
      +-----+
      | 123 |
      | 124 |
      | 125 |
      | 126 |
      | 127 |
      | 128 |
      | 129 |
      | 130 |
      +-----+
      8 rows in set (0.00 sec)
       
      MariaDB [test]> set big_tables=1;
      Query OK, 0 rows affected (0.00 sec)
       
      MariaDB [test]> with recursive qn as (select 123 as a union all select 1+a from qn where a<130) select * from qn;
      +-----+
      | a   |
      +-----+
      | 123 |
      | 124 |
      +-----+
      2 rows in set (0.00 sec)
      
      

      Attachments

        Issue Links

          Activity

            People

              igor Igor Babaev
              alice Alice Sherepa
              Votes:
              0 Vote for this issue
              Watchers:
              3 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.