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

Engine column (and index?) options are not recognized by partitioned tables

    Details

    • Type: Bug
    • Status: Stalled
    • Priority: Major
    • Resolution: Unresolved
    • Affects Version/s: 10.0.12
    • Fix Version/s: 10.1
    • Component/s: None
    • Labels:
      None

      Description

      The create statement:

      CREATE TABLE t1 (
      id INT NOT NULL,
      msg VARCHAR(32) FLAG=12)
      ENGINE=CONNECT TABLE_TYPE=FIX
      PARTITION BY HASH(id)
      PARTITIONS 3;
      

      returns the error message: (1911) Unknown option 'flag'

      Note that can be temporarily bypassed by doing:

      CREATE TABLE t1 (
      id INT NOT NULL,
      msg VARCHAR(32) FLAG=12)
      ENGINE=CONNECT TABLE_TYPE=FIX;
      
      ALTER TABLE t1
      PARTITION BY HASH(id)
      PARTITIONS 3;
      

      Note: Partition support by CONNECT is a work in progress.

        Gliffy Diagrams

          Attachments

            Activity

            There are no comments yet on this issue.

              People

              • Assignee:
                serg Sergei Golubchik
                Reporter:
                bertrandop Olivier Bertrand
              • Votes:
                0 Vote for this issue
                Watchers:
                2 Start watching this issue

                Dates

                • Created:
                  Updated: