Details

    Description

      testcase:

      WITH RECURSIVE cte AS (
      	SELECT 1 AS a UNION ALL
      	SELECT NULL FROM cte WHERE a IS NOT NULL)
      SELECT * FROM cte;
      

      it produces an infinite loop, so will get (max_recursive_iterations) strings with 0 (plus 1 sting with 1)
      if we use union distinct:

      MariaDB [test]> WITH RECURSIVE cte AS (
          -> SELECT 1 AS a UNION 
          -> SELECT NULL FROM cte WHERE a IS NOT NULL)
          -> SELECT * FROM cte;
      +---+
      | a |
      +---+
      | 1 |
      | 0 |
      +---+
      2 rows in set (0.001 sec)
      

      Attachments

        Issue Links

          Activity

            Transition Time In Source Status Execution Times
            Igor Babaev (Inactive) made transition -
            Open In Progress
            102d 5h 49m 1
            Igor Babaev (Inactive) made transition -
            In Progress Closed
            22h 38m 1

            People

              igor Igor Babaev (Inactive)
              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.