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

CREATE TABLE t1 (<defs>) SELECT... does not preserve new CHECK constraint

    XMLWordPrintable

Details

    Description

      DROP TABLE IF EXISTS t1,t2;
      CREATE TABLE t1 (a INT CHECK(a=1));
      CREATE TABLE t2 (a INT CHECK(a=2)) AS SELECT * FROM t1;
      SHOW CREATE TABLE t2;
      

      +-------+-------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                          |
      +-------+-------------------------------------------------------------------------------------------------------+
      | t2    | CREATE TABLE `t2` (
        `a` int(11) DEFAULT NULL CHECK (`a` = 1)
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
      +-------+-------------------------------------------------------------------------------------------------------+
      

      The expected CHECK clause for t2.a should be a=2 rather a=1.

      Attachments

        Issue Links

          Activity

            People

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