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

Non-empty statement transaction on global rollback after TRT update error

Details

    Description

      Note: There seems to be many things in this test which should be redundant (like, for example, attempt to create an already existing application period in ALTER, and more), but I can't get rid of any of them.

      Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed in ha_rollback_trans with versioned tables

      --source include/have_innodb.inc
       
      CREATE TABLE t1 (s DATE, e DATE, PERIOD FOR app(s,e)) ENGINE=InnoDB;
      ALTER TABLE t1
          ADD row_start BIGINT UNSIGNED AS ROW START,
          ADD row_end BIGINT UNSIGNED AS ROW END,
          ADD PERIOD FOR SYSTEM_TIME(row_start,row_end),
          WITH SYSTEM VERSIONING,
          ADD PERIOD IF NOT EXISTS FOR app(x,y);
       
      SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
      START TRANSACTION;
      INSERT INTO t1 (s,e) VALUES ('2021-07-04','2024-08-18');
       
      --connect (con1,localhost,root,,test)
      START TRANSACTION;
      INSERT INTO t1 (s,e) VALUES ('2018-06-01','2021-09-15');
       
      --connection default
      --error ER_VERS_NO_TRX_ID
      SELECT * FROM t1 FOR SYSTEM_TIME AS OF NOW();
       
      --connection con1
      SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 1;
      # Can be existing or non-existing table, does not matter
      --error ER_LOCK_WAIT_TIMEOUT
      ALTER TABLE xx;
       
      # Cleanup
      --disconnect con1
      --connection default
      DROP TABLE t1;
      

      10.4 b615d275

      mysqld: /data/src/10.4/sql/handler.cc:1836: int ha_rollback_trans(THD*, bool): Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed.
      200204  1:57:22 [ERROR] mysqld got signal 6 ;
       
      #7  0x00007fe5237bcf12 in __GI___assert_fail (assertion=0x55903473a140 "thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt", file=0x559034739ad1 "/data/src/10.4/sql/handler.cc", line=1836, function=0x55903473c9a0 <ha_rollback_trans(THD*, bool)::__PRETTY_FUNCTION__> "int ha_rollback_trans(THD*, bool)") at assert.c:101
      #8  0x0000559033bf6f2b in ha_rollback_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1835
      #9  0x0000559033bf689b in ha_commit_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1690
      #10 0x0000559033a2f201 in trans_commit_implicit (thd=0x7fe4c4000af0) at /data/src/10.4/sql/transaction.cc:301
      #11 0x0000559033894690 in mysql_execute_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:3709
      #12 0x00005590338a38e3 in mysql_parse (thd=0x7fe4c4000af0, rawbuf=0x7fe4c4011dd8 "ALTER TABLE xx", length=14, parser_state=0x7fe51cb1a160, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:7901
      #13 0x000055903388eab0 in dispatch_command (command=COM_QUERY, thd=0x7fe4c4000af0, packet=0x7fe4c40083a1 "ALTER TABLE xx", packet_length=14, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:1842
      #14 0x000055903388d13d in do_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:1360
      #15 0x0000559033a16357 in do_handle_one_connection (connect=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1412
      #16 0x0000559033a160a6 in handle_one_connection (arg=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1316
      #17 0x000055903441e9c9 in pfs_spawn_thread (arg=0x559037260020) at /data/src/10.4/storage/perfschema/pfs.cc:1869
      #18 0x00007fe5257454a4 in start_thread (arg=0x7fe51cb1b700) at pthread_create.c:456
      #19 0x00007fe523879d0f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:97
      

      Reproducible on 10.4, 10.5.
      The test case is not applicable to 10.3 because of the application period (see comments in regard to 10.3).
      No obvious problem on a non-debug build, but there can be hidden ones.

      Attachments

        Issue Links

          Activity

            elenst Elena Stepanova created issue -
            elenst Elena Stepanova made changes -
            Field Original Value New Value
            elenst Elena Stepanova made changes -
            elenst Elena Stepanova made changes -
            Fix Version/s 10.5 [ 23123 ]
            Affects Version/s 10.5 [ 23123 ]
            elenst Elena Stepanova made changes -
            Fix Version/s 10.3 [ 22126 ]
            Affects Version/s 10.3 [ 22126 ]
            Description _Note: There seems to be many things in this test which should be redundant (like, for example, attempt to create an already existing application period in ALTER, and more), but I can't get rid of any of them._

            {code:sql}
            --source include/have_innodb.inc

            CREATE TABLE t1 (s DATE, e DATE, PERIOD FOR app(s,e)) ENGINE=InnoDB;
            ALTER TABLE t1
                ADD row_start BIGINT UNSIGNED AS ROW START,
                ADD row_end BIGINT UNSIGNED AS ROW END,
                ADD PERIOD FOR SYSTEM_TIME(row_start,row_end),
                WITH SYSTEM VERSIONING,
                ADD PERIOD IF NOT EXISTS FOR app(x,y);

            SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2021-07-04','2024-08-18');

            --connect (con1,localhost,root,,test)
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2018-06-01','2021-09-15');

            --connection default
            --error ER_VERS_NO_TRX_ID
            SELECT * FROM t1 FOR SYSTEM_TIME AS OF NOW();

            --connection con1
            SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 1;
            # Can be existing or non-existing table, does not matter
            --error ER_LOCK_WAIT_TIMEOUT
            ALTER TABLE xx;

            # Cleanup
            --disconnect con1
            --connection default
            DROP TABLE t1;
            {code}

            {noformat:title=10.4 b615d275}
            mysqld: /data/src/10.4/sql/handler.cc:1836: int ha_rollback_trans(THD*, bool): Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed.
            200204 1:57:22 [ERROR] mysqld got signal 6 ;

            #7 0x00007fe5237bcf12 in __GI___assert_fail (assertion=0x55903473a140 "thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt", file=0x559034739ad1 "/data/src/10.4/sql/handler.cc", line=1836, function=0x55903473c9a0 <ha_rollback_trans(THD*, bool)::__PRETTY_FUNCTION__> "int ha_rollback_trans(THD*, bool)") at assert.c:101
            #8 0x0000559033bf6f2b in ha_rollback_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1835
            #9 0x0000559033bf689b in ha_commit_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1690
            #10 0x0000559033a2f201 in trans_commit_implicit (thd=0x7fe4c4000af0) at /data/src/10.4/sql/transaction.cc:301
            #11 0x0000559033894690 in mysql_execute_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:3709
            #12 0x00005590338a38e3 in mysql_parse (thd=0x7fe4c4000af0, rawbuf=0x7fe4c4011dd8 "ALTER TABLE xx", length=14, parser_state=0x7fe51cb1a160, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:7901
            #13 0x000055903388eab0 in dispatch_command (command=COM_QUERY, thd=0x7fe4c4000af0, packet=0x7fe4c40083a1 "ALTER TABLE xx", packet_length=14, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:1842
            #14 0x000055903388d13d in do_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:1360
            #15 0x0000559033a16357 in do_handle_one_connection (connect=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1412
            #16 0x0000559033a160a6 in handle_one_connection (arg=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1316
            #17 0x000055903441e9c9 in pfs_spawn_thread (arg=0x559037260020) at /data/src/10.4/storage/perfschema/pfs.cc:1869
            #18 0x00007fe5257454a4 in start_thread (arg=0x7fe51cb1b700) at pthread_create.c:456
            #19 0x00007fe523879d0f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:97
            {noformat}

            Reproducible on 10.4, 10.5.
            The test case is not applicable to 10.3 because of the application period.
            No obvious problem on a non-debug build, but there can be hidden ones.
            _Note: There seems to be many things in this test which should be redundant (like, for example, attempt to create an already existing application period in ALTER, and more), but I can't get rid of any of them._

            {code:sql}
            --source include/have_innodb.inc

            CREATE TABLE t1 (s DATE, e DATE, PERIOD FOR app(s,e)) ENGINE=InnoDB;
            ALTER TABLE t1
                ADD row_start BIGINT UNSIGNED AS ROW START,
                ADD row_end BIGINT UNSIGNED AS ROW END,
                ADD PERIOD FOR SYSTEM_TIME(row_start,row_end),
                WITH SYSTEM VERSIONING,
                ADD PERIOD IF NOT EXISTS FOR app(x,y);

            SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2021-07-04','2024-08-18');

            --connect (con1,localhost,root,,test)
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2018-06-01','2021-09-15');

            --connection default
            --error ER_VERS_NO_TRX_ID
            SELECT * FROM t1 FOR SYSTEM_TIME AS OF NOW();

            --connection con1
            SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 1;
            # Can be existing or non-existing table, does not matter
            --error ER_LOCK_WAIT_TIMEOUT
            ALTER TABLE xx;

            # Cleanup
            --disconnect con1
            --connection default
            DROP TABLE t1;
            {code}

            {noformat:title=10.4 b615d275}
            mysqld: /data/src/10.4/sql/handler.cc:1836: int ha_rollback_trans(THD*, bool): Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed.
            200204 1:57:22 [ERROR] mysqld got signal 6 ;

            #7 0x00007fe5237bcf12 in __GI___assert_fail (assertion=0x55903473a140 "thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt", file=0x559034739ad1 "/data/src/10.4/sql/handler.cc", line=1836, function=0x55903473c9a0 <ha_rollback_trans(THD*, bool)::__PRETTY_FUNCTION__> "int ha_rollback_trans(THD*, bool)") at assert.c:101
            #8 0x0000559033bf6f2b in ha_rollback_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1835
            #9 0x0000559033bf689b in ha_commit_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1690
            #10 0x0000559033a2f201 in trans_commit_implicit (thd=0x7fe4c4000af0) at /data/src/10.4/sql/transaction.cc:301
            #11 0x0000559033894690 in mysql_execute_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:3709
            #12 0x00005590338a38e3 in mysql_parse (thd=0x7fe4c4000af0, rawbuf=0x7fe4c4011dd8 "ALTER TABLE xx", length=14, parser_state=0x7fe51cb1a160, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:7901
            #13 0x000055903388eab0 in dispatch_command (command=COM_QUERY, thd=0x7fe4c4000af0, packet=0x7fe4c40083a1 "ALTER TABLE xx", packet_length=14, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:1842
            #14 0x000055903388d13d in do_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:1360
            #15 0x0000559033a16357 in do_handle_one_connection (connect=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1412
            #16 0x0000559033a160a6 in handle_one_connection (arg=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1316
            #17 0x000055903441e9c9 in pfs_spawn_thread (arg=0x559037260020) at /data/src/10.4/storage/perfschema/pfs.cc:1869
            #18 0x00007fe5257454a4 in start_thread (arg=0x7fe51cb1b700) at pthread_create.c:456
            #19 0x00007fe523879d0f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:97
            {noformat}

            Reproducible on 10.4, 10.5.
            The test case is not applicable to 10.3 because of the application period (see comments in regard to 10.3).
            No obvious problem on a non-debug build, but there can be hidden ones.
            serg Sergei Golubchik made changes -
            Fix Version/s 10.6 [ 24028 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.6 [ 24028 ]
            midenok Aleksey Midenkov made changes -
            Labels trx-versioning
            midenok Aleksey Midenkov made changes -
            Description _Note: There seems to be many things in this test which should be redundant (like, for example, attempt to create an already existing application period in ALTER, and more), but I can't get rid of any of them._

            {code:sql}
            --source include/have_innodb.inc

            CREATE TABLE t1 (s DATE, e DATE, PERIOD FOR app(s,e)) ENGINE=InnoDB;
            ALTER TABLE t1
                ADD row_start BIGINT UNSIGNED AS ROW START,
                ADD row_end BIGINT UNSIGNED AS ROW END,
                ADD PERIOD FOR SYSTEM_TIME(row_start,row_end),
                WITH SYSTEM VERSIONING,
                ADD PERIOD IF NOT EXISTS FOR app(x,y);

            SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2021-07-04','2024-08-18');

            --connect (con1,localhost,root,,test)
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2018-06-01','2021-09-15');

            --connection default
            --error ER_VERS_NO_TRX_ID
            SELECT * FROM t1 FOR SYSTEM_TIME AS OF NOW();

            --connection con1
            SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 1;
            # Can be existing or non-existing table, does not matter
            --error ER_LOCK_WAIT_TIMEOUT
            ALTER TABLE xx;

            # Cleanup
            --disconnect con1
            --connection default
            DROP TABLE t1;
            {code}

            {noformat:title=10.4 b615d275}
            mysqld: /data/src/10.4/sql/handler.cc:1836: int ha_rollback_trans(THD*, bool): Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed.
            200204 1:57:22 [ERROR] mysqld got signal 6 ;

            #7 0x00007fe5237bcf12 in __GI___assert_fail (assertion=0x55903473a140 "thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt", file=0x559034739ad1 "/data/src/10.4/sql/handler.cc", line=1836, function=0x55903473c9a0 <ha_rollback_trans(THD*, bool)::__PRETTY_FUNCTION__> "int ha_rollback_trans(THD*, bool)") at assert.c:101
            #8 0x0000559033bf6f2b in ha_rollback_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1835
            #9 0x0000559033bf689b in ha_commit_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1690
            #10 0x0000559033a2f201 in trans_commit_implicit (thd=0x7fe4c4000af0) at /data/src/10.4/sql/transaction.cc:301
            #11 0x0000559033894690 in mysql_execute_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:3709
            #12 0x00005590338a38e3 in mysql_parse (thd=0x7fe4c4000af0, rawbuf=0x7fe4c4011dd8 "ALTER TABLE xx", length=14, parser_state=0x7fe51cb1a160, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:7901
            #13 0x000055903388eab0 in dispatch_command (command=COM_QUERY, thd=0x7fe4c4000af0, packet=0x7fe4c40083a1 "ALTER TABLE xx", packet_length=14, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:1842
            #14 0x000055903388d13d in do_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:1360
            #15 0x0000559033a16357 in do_handle_one_connection (connect=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1412
            #16 0x0000559033a160a6 in handle_one_connection (arg=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1316
            #17 0x000055903441e9c9 in pfs_spawn_thread (arg=0x559037260020) at /data/src/10.4/storage/perfschema/pfs.cc:1869
            #18 0x00007fe5257454a4 in start_thread (arg=0x7fe51cb1b700) at pthread_create.c:456
            #19 0x00007fe523879d0f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:97
            {noformat}

            Reproducible on 10.4, 10.5.
            The test case is not applicable to 10.3 because of the application period (see comments in regard to 10.3).
            No obvious problem on a non-debug build, but there can be hidden ones.
            _Note: There seems to be many things in this test which should be redundant (like, for example, attempt to create an already existing application period in ALTER, and more), but I can't get rid of any of them._

            Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed in ha_rollback_trans with versioned tables

            {code:sql}
            --source include/have_innodb.inc

            CREATE TABLE t1 (s DATE, e DATE, PERIOD FOR app(s,e)) ENGINE=InnoDB;
            ALTER TABLE t1
                ADD row_start BIGINT UNSIGNED AS ROW START,
                ADD row_end BIGINT UNSIGNED AS ROW END,
                ADD PERIOD FOR SYSTEM_TIME(row_start,row_end),
                WITH SYSTEM VERSIONING,
                ADD PERIOD IF NOT EXISTS FOR app(x,y);

            SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2021-07-04','2024-08-18');

            --connect (con1,localhost,root,,test)
            START TRANSACTION;
            INSERT INTO t1 (s,e) VALUES ('2018-06-01','2021-09-15');

            --connection default
            --error ER_VERS_NO_TRX_ID
            SELECT * FROM t1 FOR SYSTEM_TIME AS OF NOW();

            --connection con1
            SET innodb_lock_wait_timeout= 1, lock_wait_timeout= 1;
            # Can be existing or non-existing table, does not matter
            --error ER_LOCK_WAIT_TIMEOUT
            ALTER TABLE xx;

            # Cleanup
            --disconnect con1
            --connection default
            DROP TABLE t1;
            {code}

            {noformat:title=10.4 b615d275}
            mysqld: /data/src/10.4/sql/handler.cc:1836: int ha_rollback_trans(THD*, bool): Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed.
            200204 1:57:22 [ERROR] mysqld got signal 6 ;

            #7 0x00007fe5237bcf12 in __GI___assert_fail (assertion=0x55903473a140 "thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt", file=0x559034739ad1 "/data/src/10.4/sql/handler.cc", line=1836, function=0x55903473c9a0 <ha_rollback_trans(THD*, bool)::__PRETTY_FUNCTION__> "int ha_rollback_trans(THD*, bool)") at assert.c:101
            #8 0x0000559033bf6f2b in ha_rollback_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1835
            #9 0x0000559033bf689b in ha_commit_trans (thd=0x7fe4c4000af0, all=true) at /data/src/10.4/sql/handler.cc:1690
            #10 0x0000559033a2f201 in trans_commit_implicit (thd=0x7fe4c4000af0) at /data/src/10.4/sql/transaction.cc:301
            #11 0x0000559033894690 in mysql_execute_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:3709
            #12 0x00005590338a38e3 in mysql_parse (thd=0x7fe4c4000af0, rawbuf=0x7fe4c4011dd8 "ALTER TABLE xx", length=14, parser_state=0x7fe51cb1a160, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:7901
            #13 0x000055903388eab0 in dispatch_command (command=COM_QUERY, thd=0x7fe4c4000af0, packet=0x7fe4c40083a1 "ALTER TABLE xx", packet_length=14, is_com_multi=false, is_next_command=false) at /data/src/10.4/sql/sql_parse.cc:1842
            #14 0x000055903388d13d in do_command (thd=0x7fe4c4000af0) at /data/src/10.4/sql/sql_parse.cc:1360
            #15 0x0000559033a16357 in do_handle_one_connection (connect=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1412
            #16 0x0000559033a160a6 in handle_one_connection (arg=0x55903733c050) at /data/src/10.4/sql/sql_connect.cc:1316
            #17 0x000055903441e9c9 in pfs_spawn_thread (arg=0x559037260020) at /data/src/10.4/storage/perfschema/pfs.cc:1869
            #18 0x00007fe5257454a4 in start_thread (arg=0x7fe51cb1b700) at pthread_create.c:456
            #19 0x00007fe523879d0f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:97
            {noformat}

            Reproducible on 10.4, 10.5.
            The test case is not applicable to 10.3 because of the application period (see comments in regard to 10.3).
            No obvious problem on a non-debug build, but there can be hidden ones.
            midenok Aleksey Midenkov made changes -
            Summary Assertion `thd->transaction.stmt.ha_list == __null || trans == &thd->transaction.stmt' failed in ha_rollback_trans with versioned tables Non-empty statement transaction fails rollback after TRT update error
            midenok Aleksey Midenkov made changes -
            Summary Non-empty statement transaction fails rollback after TRT update error Non-empty statement transaction on global rollback after TRT update error
            midenok Aleksey Midenkov made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            midenok Aleksey Midenkov made changes -
            Assignee Aleksey Midenkov [ midenok ] Nikita Malyavin [ nikitamalyavin ]
            Status In Progress [ 3 ] In Review [ 10002 ]
            nikitamalyavin Nikita Malyavin made changes -
            Assignee Nikita Malyavin [ nikitamalyavin ] Aleksey Midenkov [ midenok ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            Roel Roel Van de Paar made changes -
            alice Alice Sherepa made changes -
            Affects Version/s 10.6 [ 24028 ]
            Affects Version/s 10.7 [ 24805 ]
            alice Alice Sherepa made changes -
            Fix Version/s 10.6 [ 24028 ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 103640 ] MariaDB v4 [ 143627 ]
            midenok Aleksey Midenkov made changes -
            Status Stalled [ 10000 ] In Progress [ 3 ]
            midenok Aleksey Midenkov made changes -
            Affects Version/s 10.3 [ 22126 ]
            midenok Aleksey Midenkov made changes -
            Fix Version/s 10.3 [ 22126 ]
            midenok Aleksey Midenkov made changes -
            Fix Version/s 10.4.23 [ 26807 ]
            Fix Version/s 10.5.14 [ 26809 ]
            Fix Version/s 10.6.6 [ 26811 ]
            Fix Version/s 10.7.2 [ 26813 ]
            Fix Version/s 10.8.1 [ 26815 ]
            Fix Version/s 10.4 [ 22408 ]
            Fix Version/s 10.5 [ 23123 ]
            Fix Version/s 10.6 [ 24028 ]
            Resolution Fixed [ 1 ]
            Status In Progress [ 3 ] Closed [ 6 ]

            People

              midenok Aleksey Midenkov
              elenst Elena Stepanova
              Votes:
              0 Vote for this issue
              Watchers:
              6 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.