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

Partitioned Aria table created by a previous version is recognized as TEST_SQL_DISCOVERY

    Details

    • Type: Bug
    • Status: Closed
    • Priority: Major
    • Resolution: Fixed
    • Affects Version/s: 10.0.2, 5.5.31
    • Fix Version/s: 10.0.4, 5.5.32
    • Component/s: None
    • Labels:
      None

      Description

      I create a simple Aria table on MariaDB server 5.5 (or 5.2, or 5.3):

      create table t1 (i int) engine=Aria partition by hash(i);
      

      Then I shutdown the server gracefully:

      130501 23:29:25  InnoDB: Starting shutdown...
      130501 23:29:26  InnoDB: Shutdown completed; log sequence number 1597945
      130501 23:29:26 [Note] /home/elenst/bzr/5.5/sql/mysqld: Shutdown complete
      

      Then I create a new clean datadir for 10.0 server and bootstrap it.
      Then I copy the table files from 5.5 datadir to the new 10.0 datadir:

      t1.frm       
      t1.par       
      t1#P#p0.MAD  
      t1#P#p0.MAI
      

      Then I start 10.0 server, it starts without complaints.
      I also run mysql_upgrade (it's optional, doesn't matter whether I do it or not):

      ...
      performance_schema
      test
      test.t1                                            OK
      

      Then I connect to the server and look at the table:

      MariaDB [test]> show create table t1;
      +-------+-------------------------------------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                                                        |
      +-------+-------------------------------------------------------------------------------------------------------------------------------------+
      | t1    | CREATE TABLE `t1` (
        `i` int(11) DEFAULT NULL
      ) ENGINE=TEST_SQL_DISCOVERY DEFAULT CHARSET=latin1
      /*!50100 PARTITION BY HASH (i) */ |
      +-------+-------------------------------------------------------------------------------------------------------------------------------------+
      1 row in set (0.00 sec)
      

      And it behaves like TEST_SQL_DISCOVERY, too:

      MariaDB [test]> insert into t1 values (1);
      ERROR 1031 (HY000): Storage engine TEST_SQL_DISCOVERY of the table `test`.`t1` doesn't have this option
      

      If I start or build server without TEST_SQL_DISCOVERY, the table is correctly recognized as Aria.

      I can't make up a cross-version MTR test, so I will attach the files I copied into 10.0 datadir in the previously described test – that is, files created by 5.5, but never touched by 10.0 yet.

        Gliffy Diagrams

          Attachments

          1. t1.frm
            8 kB
          2. t1.par
            0.0 kB
          3. t1#P#p0.MAD
            8 kB
          4. t1#P#p0.MAI
            8 kB

            Issue Links

              Activity

              Hide
              elenst Elena Stepanova added a comment -

              Increased the priority because we have another bug report, MDEV-4628, which describes a very similar problem but with CONNECT engine instead of TEST_SQL_DISCOVERY.

              Show
              elenst Elena Stepanova added a comment - Increased the priority because we have another bug report, MDEV-4628 , which describes a very similar problem but with CONNECT engine instead of TEST_SQL_DISCOVERY.
              Hide
              serg Sergei Golubchik added a comment -

              5.5 is affected too

              Show
              serg Sergei Golubchik added a comment - 5.5 is affected too
              Hide
              serg Sergei Golubchik added a comment -

              pushed in 5.5 and 10.0-base

              Show
              serg Sergei Golubchik added a comment - pushed in 5.5 and 10.0-base

                People

                • Assignee:
                  serg Sergei Golubchik
                  Reporter:
                  elenst Elena Stepanova
                • Votes:
                  0 Vote for this issue
                  Watchers:
                  2 Start watching this issue

                  Dates

                  • Created:
                    Updated:
                    Resolved:

                    Time Tracking

                    Estimated:
                    Original Estimate - Not Specified
                    Not Specified
                    Remaining:
                    Remaining Estimate - 0 minutes
                    0m
                    Logged:
                    Time Spent - 5 hours, 30 minutes
                    5h 30m