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

CTE support for UPDATE and DELETE statements

Details

    Description

           CREATE TABLE tree (
             `Node` VARCHAR(3),
             `ParentNode` VARCHAR(3),
             `EmployeeID` INTEGER,
             `Depth` INTEGER,
             `Lineage` VARCHAR(16)
           );
       
           INSERT INTO tree
             (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
           VALUES
             ('100', NULL, '1001', 0, '/'),
             ('101', '100', '1002', NULL, NULL),
             ('102', '101', '1003', NULL, NULL),
             ('103', '102', '1004', NULL, NULL),
             ('104', '102', '1005', NULL, NULL),
             ('105', '102', '1006', NULL, NULL);
       
           WITH RECURSIVE prev AS (
           SELECT * FROM tree WHERE ParentNode IS NULL
           UNION
           SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
           FROM tree t JOIN prev p ON t.ParentNode = p.Node
           )
           SELECT * FROM prev;
           WITH RECURSIVE prev AS (
           SELECT * FROM tree WHERE ParentNode IS NULL
           UNION
           SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
           FROM prev p JOIN tree t ON t.ParentNode = p.Node
           )
           UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;
       
      You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7

      db<>fiddle here*

      supported in MySQL-8.0 and MSSQL

      Attachments

        Issue Links

          Activity

            danblack Daniel Black created issue -
            serg Sergei Golubchik made changes -
            Field Original Value New Value
            Labels upstream-fixed gsoc19 upstream-fixed
            serg Sergei Golubchik made changes -
            Assignee Igor Babaev [ igor ]
            serg Sergei Golubchik made changes -
            Component/s Optimizer [ 10200 ]
            cvicentiu Vicențiu Ciorbaru made changes -
            Labels gsoc19 upstream-fixed gsoc19 gsoc20 upstream-fixed
            alice Alice Sherepa made changes -
            psergei Sergei Petrunia made changes -
            Fix Version/s 10.6 [ 24028 ]
            psergei Sergei Petrunia made changes -
            Description
            {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );
             
                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);
             
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]*

            [supported in MySQL-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );
             
                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);
             
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]*

            [supported in MySQL-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            psergei Sergei Petrunia made changes -
            Summary Recursive CTE support for UPDATE (and DELETE) statements CTE support for UPDATE (and DELETE) statements
            psergei Sergei Petrunia made changes -
            Status Open [ 1 ] Confirmed [ 10101 ]
            igor Igor Babaev (Inactive) made changes -
            Summary CTE support for UPDATE (and DELETE) statements CTE support for UPDATE and DELETE statements
            igor Igor Babaev (Inactive) made changes -
            psergei Sergei Petrunia made changes -
            psergei Sergei Petrunia made changes -
            serg Sergei Golubchik made changes -
            Rank Ranked higher
            serg Sergei Golubchik made changes -
            Status Confirmed [ 10101 ] In Progress [ 3 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.7 [ 24805 ]
            Fix Version/s 10.6 [ 24028 ]
            alice Alice Sherepa made changes -
            alice Alice Sherepa made changes -
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.8 [ 26121 ]
            Fix Version/s 10.7 [ 24805 ]
            alice Alice Sherepa made changes -
            alice Alice Sherepa made changes -
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 92362 ] MariaDB v4 [ 131832 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.9 [ 26905 ]
            Fix Version/s 10.8 [ 26121 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.10 [ 27530 ]
            Fix Version/s 10.9 [ 26905 ]
            julien.fritsch Julien Fritsch made changes -
            Description {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );
             
                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);
             
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]*

            [supported in MySQL-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );

                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);

                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]\*

            [supported in MySQL\-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            julien.fritsch Julien Fritsch made changes -
            Description {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );

                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);

                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]\*

            [supported in MySQL\-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );

                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);

                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]*

            [supported in MySQL-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.11 [ 27614 ]
            Fix Version/s 10.10 [ 27530 ]
            AirFocus AirFocus made changes -
            Description {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );

                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);

                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]*

            [supported in MySQL-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            {code:sql}
                 CREATE TABLE tree (
                   `Node` VARCHAR(3),
                   `ParentNode` VARCHAR(3),
                   `EmployeeID` INTEGER,
                   `Depth` INTEGER,
                   `Lineage` VARCHAR(16)
                 );

                 INSERT INTO tree
                   (`Node`, `ParentNode`, `EmployeeID`, `Depth`, `Lineage`)
                 VALUES
                   ('100', NULL, '1001', 0, '/'),
                   ('101', '100', '1002', NULL, NULL),
                   ('102', '101', '1003', NULL, NULL),
                   ('103', '102', '1004', NULL, NULL),
                   ('104', '102', '1005', NULL, NULL),
                   ('105', '102', '1006', NULL, NULL);

                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM tree t JOIN prev p ON t.ParentNode = p.Node
                 )
                 SELECT * FROM prev;
                 WITH RECURSIVE prev AS (
                 SELECT * FROM tree WHERE ParentNode IS NULL
                 UNION
                 SELECT t.Node,t.ParentNode,t.EmployeeID,p.Depth + 1 as Depth, CONCAT(p.Lineage, t.ParentNode, '/')
                 FROM prev p JOIN tree t ON t.ParentNode = p.Node
                 )
                 UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.Node;

            You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UPDATE tree t, prev p SET t.Depth=p.Depth, t.Lineage=p.Lineage WHERE t.Node=p.No' at line 7
            {code}

            [db<>fiddle here|https://dbfiddle.uk/?rdbms=mariadb_10.3&fiddle=a28ed3cabd68bac75941eba5973fd50a]\*

            [supported in MySQL\-8.0|https://dev.mysql.com/doc/refman/8.0/en/with.html] and [MSSQL|(https://stackoverflow.com/questions/54583713/mysql-while-exists-from-a-snippet-throws-error/54584556#54584556]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.11 [ 27614 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Assignee Igor Babaev [ igor ] Ralf Gebhardt [ ralf.gebhardt@mariadb.com ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Status In Progress [ 3 ] Stalled [ 10000 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Assignee Ralf Gebhardt [ ralf.gebhardt@mariadb.com ] Igor Babaev [ igor ]
            julien.fritsch Julien Fritsch made changes -
            Fix Version/s 11.2 [ 28603 ]
            julien.fritsch Julien Fritsch made changes -
            Priority Major [ 3 ] Critical [ 2 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 11.3 [ 28565 ]
            Fix Version/s 11.2 [ 28603 ]
            serg Sergei Golubchik made changes -
            serg Sergei Golubchik made changes -
            serg Sergei Golubchik made changes -
            Fix Version/s 11.4 [ 29301 ]
            Fix Version/s 11.3 [ 28565 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 11.5 [ 29506 ]
            Fix Version/s 11.4 [ 29301 ]
            julien.fritsch Julien Fritsch made changes -
            Issue Type Task [ 3 ] New Feature [ 2 ]
            serg Sergei Golubchik made changes -
            Priority Critical [ 2 ] Major [ 3 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 11.6 [ 29515 ]
            Fix Version/s 11.5 [ 29506 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 11.7 [ 29815 ]
            Fix Version/s 11.6 [ 29515 ]
            mariadb-jira-automation Jira Automation (IT) made changes -
            Zendesk Related Tickets 201775 202044
            Zendesk active tickets 201775
            ycp Yuchen Pei made changes -
            serg Sergei Golubchik made changes -
            Fix Version/s 11.8 [ 29921 ]
            Fix Version/s 11.7 [ 29815 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 11.9 [ 29945 ]
            Fix Version/s 11.8 [ 29921 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 11.9 [ 29945 ]
            monty Michael Widenius made changes -
            Status Stalled [ 10000 ] Open [ 1 ]
            igor Igor Babaev (Inactive) made changes -
            igor Igor Babaev (Inactive) made changes -
            Fix Version/s 12.1 [ 29992 ]
            Labels gsoc19 gsoc20 upstream-fixed
            igor Igor Babaev (Inactive) made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            igor Igor Babaev (Inactive) made changes -
            serg Sergei Golubchik made changes -
            Labels gsoc19 gsoc20 upstream-fixed
            julien.fritsch Julien Fritsch made changes -
            Assignee Igor Babaev [ igor ] Sergei Petrunia [ psergey ]
            julien.fritsch Julien Fritsch made changes -
            Sprint Server 12.1 dev sprint [ 793 ]
            julien.fritsch Julien Fritsch made changes -
            Fix Version/s 12.2 [ 30146 ]
            Fix Version/s 12.1 [ 29992 ]
            julien.fritsch Julien Fritsch made changes -
            Sprint Server 12.1 dev sprint [ 793 ]
            julien.fritsch Julien Fritsch made changes -
            Status In Progress [ 3 ] Stalled [ 10000 ]

            People

              psergei Sergei Petrunia
              danblack Daniel Black
              Votes:
              11 Vote for this issue
              Watchers:
              23 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

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