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

MyISAM and InnoDB work differently when comparing a TIME column to an empty string

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Won't Fix
    • 10.0(EOL)
    • N/A
    • Optimizer
    • None

    Description

      This bug is related to MDEV-9604.

      All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

      Note, the fix for 10.1 may not work for 10.0 as is, because equal field propagation in 10.1 looks very differently. So some adjusting will most likely be needed.

      SET sql_mode='';
      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
      INSERT INTO t1 VALUES ('','00:00:00',0);
      SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
      ALTER TABLE t1 ENGINE=MyISAM;
      SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
      

      • returns 0 rows for InnoDB (this is wrong)
      • returns 1 row for MyISAM

      SET sql_mode='';
      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
      INSERT INTO t1 VALUES ('','00:00:00',0);
      SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
      ALTER TABLE t1 ENGINE=MyISAM;
      SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
      

      • returns 0 rows for InnoDB (this is wrong)
      • returns 1 row for MyISAM

      SET sql_mode='';
      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
      INSERT INTO t1 VALUES ('','00:00:00',0);
      SELECT * FROM t1 WHERE b='';
      ALTER TABLE t1 ENGINE=MyISAM;
      SELECT * FROM t1 WHERE b='';
      

      • returns 0 rows for InnoDB (this is wrong)
      • returns 1 row for MyISAM

      SET sql_mode='';
      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
      INSERT INTO t1 VALUES ('','00:00:00',0);
      SELECT * FROM t1 WHERE a=b;
      ALTER TABLE t1 ENGINE=MyISAM;
      SELECT * FROM t1 WHERE a=b;
      

      • returns 1 row for InnoDB (correctly)
      • returns 1 row for MyISAM (correctly)

      Similar sort of inconsistency is observed with the DATE and DATETIME data types.

      Attachments

        Issue Links

          Activity

            bar Alexander Barkov created issue -
            bar Alexander Barkov made changes -
            Field Original Value New Value
            bar Alexander Barkov made changes -
            Description This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 does not work for 10.0 as is, because equal field propagation in 10.1 look very differently.

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 does not work for 10.0 as is, because equal field propagation in 10.1 looks very differently.

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            bar Alexander Barkov made changes -
            Description This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 does not work for 10.0 as is, because equal field propagation in 10.1 looks very differently.

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 may not work for 10.0 as is, because equal field propagation in 10.1 looks very differently. So some adjusting will most likely be needed.

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 74622 ] MariaDB v4 [ 139955 ]
            serg Sergei Golubchik made changes -
            Fix Version/s 10.0 [ 16000 ]
            bar Alexander Barkov made changes -
            Description This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 may not work for 10.0 as is, because equal field propagation in 10.1 looks very differently. So some adjusting will most likely be needed.

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 may not work for 10.0 as is, because equal field propagation in 10.1 looks very differently. So some adjusting will most likely be needed.

            {code}
            SET sql_mode='';
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            bar Alexander Barkov made changes -
            Description This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 may not work for 10.0 as is, because equal field propagation in 10.1 looks very differently. So some adjusting will most likely be needed.

            {code}
            SET sql_mode='';
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.
            This bug is related to MDEV-9604.

            All problems described here were fixed in 10.1 under terms of MDEV-9604. We now need to back-port these fixes to 10.0.

            Note, the fix for 10.1 may not work for 10.0 as is, because equal field propagation in 10.1 looks very differently. So some adjusting will most likely be needed.

            {code}
            SET sql_mode='';
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM

            {code}
            SET sql_mode='';
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT 1 FROM t1 WHERE (SELECT a FROM t1 group by c) = b;
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            SET sql_mode='';
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=INNODB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE b='';
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE b='';
            {code}
            - returns 0 rows for InnoDB (this is wrong)
            - returns 1 row for MyISAM


            {code}
            SET sql_mode='';
            DROP TABLE IF EXISTS t1;
            CREATE TABLE t1 (a ENUM('a'), b TIME, c INT, KEY(b)) ENGINE=InnoDB;
            INSERT INTO t1 VALUES ('','00:00:00',0);
            SELECT * FROM t1 WHERE a=b;
            ALTER TABLE t1 ENGINE=MyISAM;
            SELECT * FROM t1 WHERE a=b;
            {code}
            - returns 1 row for InnoDB (correctly)
            - returns 1 row for MyISAM (correctly)

            Similar sort of inconsistency is observed with the DATE and DATETIME data types.

            We won't backport this to 10.0, as it's out of support period.
            Closing this forgotten issue.

            bar Alexander Barkov added a comment - We won't backport this to 10.0, as it's out of support period. Closing this forgotten issue.
            bar Alexander Barkov made changes -
            issue.field.resolutiondate 2022-10-26 10:31:42.0 2022-10-26 10:31:42.975
            bar Alexander Barkov made changes -
            Fix Version/s N/A [ 14700 ]
            Resolution Won't Fix [ 2 ]
            Status Open [ 1 ] Closed [ 6 ]

            People

              bar Alexander Barkov
              bar Alexander Barkov
              Votes:
              0 Vote for this issue
              Watchers:
              1 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.