Details

    Description

      MariaDB Server's grammar supports the CREATE TABLESPACE, ALTER TABLESPACE, and DROP TABLESPACE statements. These statements seem to have been inherited from MySQL NDB Cluster.

      MySQL 5.7 supports these statements for InnoDB as well, but we chose not to merge that support in MariaDB 10.2.

      https://mariadb.com/kb/en/library/alter-tablespace/

      https://mariadb.com/kb/en/library/create-tablespace/

      https://mariadb.com/kb/en/library/drop-tablespace/

      The MySQL-compatible statements will actually still succeed on MariaDB, but will throw a warning. e.g.:

      MariaDB [db1]> CREATE TABLESPACE `ts1` ADD DATAFILE 'ts1.ibd' ENGINE=INNODB;
      Query OK, 0 rows affected, 1 warning (0.00 sec)
       
      MariaDB [db1]> SHOW WARNINGS;
      +---------+------+------------------------------------------------------------------------------------------------+
      | Level   | Code | Message                                                                                        |
      +---------+------+------------------------------------------------------------------------------------------------+
      | Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP' |
      +---------+------+------------------------------------------------------------------------------------------------+
      1 row in set (0.00 sec)

      Is there any reason to keep these in MariaDB?

      Attachments

        Issue Links

          Activity

            GeoffMontee Geoff Montee (Inactive) created issue -
            GeoffMontee Geoff Montee (Inactive) made changes -
            Field Original Value New Value
            GeoffMontee Geoff Montee (Inactive) made changes -
            GeoffMontee Geoff Montee (Inactive) made changes -
            GeoffMontee Geoff Montee (Inactive) made changes -
            GeoffMontee Geoff Montee (Inactive) made changes -
            GeoffMontee Geoff Montee (Inactive) made changes -
            Description MariaDB Server's grammar supports the CREATE TABLESPACE, ALTER TABLESPACE, and DROP TABLESPACE statements. These statements seem to have been inherited from MySQL NDB Cluster.

            MySQL 5.7 supports these statements for InnoDB as well, but we chose not to merge that support in MariaDB 10.2. The MySQL-compatible statements will actually still succeed on MariaDB, but will throw a warning. e.g.:

            {noformat}
            MariaDB [db1]> CREATE TABLESPACE `ts1` ADD DATAFILE 'ts1.ibd' ENGINE=INNODB;
            Query OK, 0 rows affected, 1 warning (0.00 sec)

            MariaDB [db1]> SHOW WARNINGS;
            +---------+------+------------------------------------------------------------------------------------------------+
            | Level | Code | Message |
            +---------+------+------------------------------------------------------------------------------------------------+
            | Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP' |
            +---------+------+------------------------------------------------------------------------------------------------+
            1 row in set (0.00 sec)
            {noformat}

            Is there any reason to keep these in MariaDB?
            MariaDB Server's grammar supports the CREATE TABLESPACE, ALTER TABLESPACE, and DROP TABLESPACE statements. These statements seem to have been inherited from MySQL NDB Cluster.

            MySQL 5.7 supports these statements for InnoDB as well, but we chose not to merge that support in MariaDB 10.2.

            https://mariadb.com/kb/en/library/alter-tablespace/

            https://mariadb.com/kb/en/library/create-tablespace/

            https://mariadb.com/kb/en/library/drop-tablespace/

            The MySQL-compatible statements will actually still succeed on MariaDB, but will throw a warning. e.g.:

            {noformat}
            MariaDB [db1]> CREATE TABLESPACE `ts1` ADD DATAFILE 'ts1.ibd' ENGINE=INNODB;
            Query OK, 0 rows affected, 1 warning (0.00 sec)

            MariaDB [db1]> SHOW WARNINGS;
            +---------+------+------------------------------------------------------------------------------------------------+
            | Level | Code | Message |
            +---------+------+------------------------------------------------------------------------------------------------+
            | Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP' |
            +---------+------+------------------------------------------------------------------------------------------------+
            1 row in set (0.00 sec)
            {noformat}

            Is there any reason to keep these in MariaDB?
            GeoffMontee Geoff Montee (Inactive) made changes -
            GeoffMontee Geoff Montee (Inactive) made changes -
            Assignee Sergei Golubchik [ serg ] Ralf Gebhardt [ ralf.gebhardt@mariadb.com ]

            The CREATE TABLESPACE privilege is also present, even though it does not apply to MariaDB.

            It is present in multiple places.

            It is present in SHOW PRIVILEGES:

            MariaDB [(none)]> SHOW PRIVILEGES;
            +--------------------------+---------------------------------------+--------------------------------------------------------------------+
            | Privilege                | Context                               | Comment                                                            |
            +--------------------------+---------------------------------------+--------------------------------------------------------------------+
            ...
            | Create tablespace        | Server Admin                          | To create/alter/drop tablespaces                                   |
            ...
            +--------------------------+---------------------------------------+--------------------------------------------------------------------+
            

            It is present in mysql.user:

            MariaDB [(none)]> SELECT Create_tablespace_priv FROM mysql.user;
            +------------------------+
            | Create_tablespace_priv |
            +------------------------+
            | N                      |
            | Y                      |
            | Y                      |
            +------------------------
            

            And it is present in the bitmask used in mysql.global_priv, which is referenced by mysql.user:

            MariaDB [(none)]> SELECT IF(json_value(Priv,'$.access') & 536870912,'Y','N') FROM mysql.global_priv;
            +-----------------------------------------------------+
            | IF(json_value(Priv,'$.access') & 536870912,'Y','N') |
            +-----------------------------------------------------+
            | N                                                   |
            | Y                                                   |
            | Y                                                   |
            +-----------------------------------------------------+
            

            And if you GRANT ALL to a user, then they will get this privilege:

            MariaDB [(none)]> SELECT IF(json_value(Priv,'$.access') & 536870912,'Y','N') FROM mysql.global_priv WHERE User='my_user' AND Host='localhost';
            +-----------------------------------------------------+
            | IF(json_value(Priv,'$.access') & 536870912,'Y','N') |
            +-----------------------------------------------------+
            | Y                                                   |
            +-----------------------------------------------------+
            

            GeoffMontee Geoff Montee (Inactive) added a comment - The CREATE TABLESPACE privilege is also present, even though it does not apply to MariaDB. It is present in multiple places. It is present in SHOW PRIVILEGES : MariaDB [(none)]> SHOW PRIVILEGES ; + --------------------------+---------------------------------------+--------------------------------------------------------------------+ | Privilege | Context | Comment | + --------------------------+---------------------------------------+--------------------------------------------------------------------+ ... | Create tablespace | Server Admin | To create / alter / drop tablespaces | ... + --------------------------+---------------------------------------+--------------------------------------------------------------------+ It is present in mysql.user : MariaDB [(none)]> SELECT Create_tablespace_priv FROM mysql. user ; + ------------------------+ | Create_tablespace_priv | + ------------------------+ | N | | Y | | Y | + ------------------------ And it is present in the bitmask used in mysql.global_priv , which is referenced by mysql.user : MariaDB [(none)]> SELECT IF (json_value(Priv, '$.access' ) & 536870912, 'Y' , 'N' ) FROM mysql.global_priv; + -----------------------------------------------------+ | IF (json_value(Priv, '$.access' ) & 536870912, 'Y' , 'N' ) | + -----------------------------------------------------+ | N | | Y | | Y | + -----------------------------------------------------+ And if you GRANT ALL to a user, then they will get this privilege: MariaDB [(none)]> SELECT IF (json_value(Priv, '$.access' ) & 536870912, 'Y' , 'N' ) FROM mysql.global_priv WHERE User = 'my_user' AND Host= 'localhost' ; + -----------------------------------------------------+ | IF (json_value(Priv, '$.access' ) & 536870912, 'Y' , 'N' ) | + -----------------------------------------------------+ | Y | + -----------------------------------------------------+
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.4 [ 22408 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Assignee Ralf Gebhardt [ ralf.gebhardt@mariadb.com ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 96247 ] MariaDB v4 [ 131067 ]
            AirFocus AirFocus made changes -
            Description MariaDB Server's grammar supports the CREATE TABLESPACE, ALTER TABLESPACE, and DROP TABLESPACE statements. These statements seem to have been inherited from MySQL NDB Cluster.

            MySQL 5.7 supports these statements for InnoDB as well, but we chose not to merge that support in MariaDB 10.2.

            https://mariadb.com/kb/en/library/alter-tablespace/

            https://mariadb.com/kb/en/library/create-tablespace/

            https://mariadb.com/kb/en/library/drop-tablespace/

            The MySQL-compatible statements will actually still succeed on MariaDB, but will throw a warning. e.g.:

            {noformat}
            MariaDB [db1]> CREATE TABLESPACE `ts1` ADD DATAFILE 'ts1.ibd' ENGINE=INNODB;
            Query OK, 0 rows affected, 1 warning (0.00 sec)

            MariaDB [db1]> SHOW WARNINGS;
            +---------+------+------------------------------------------------------------------------------------------------+
            | Level | Code | Message |
            +---------+------+------------------------------------------------------------------------------------------------+
            | Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP' |
            +---------+------+------------------------------------------------------------------------------------------------+
            1 row in set (0.00 sec)
            {noformat}

            Is there any reason to keep these in MariaDB?
            MariaDB Server's grammar supports the CREATE TABLESPACE, ALTER TABLESPACE, and DROP TABLESPACE statements. These statements seem to have been inherited from MySQL NDB Cluster.

            MySQL 5.7 supports these statements for InnoDB as well, but we chose not to merge that support in MariaDB 10.2.

            https://mariadb.com/kb/en/library/alter\-tablespace/

            https://mariadb.com/kb/en/library/create\-tablespace/

            https://mariadb.com/kb/en/library/drop\-tablespace/

            The MySQL\-compatible statements will actually still succeed on MariaDB, but will throw a warning. e.g.:

            {noformat}
            MariaDB [db1]> CREATE TABLESPACE `ts1` ADD DATAFILE 'ts1.ibd' ENGINE=INNODB;
            Query OK, 0 rows affected, 1 warning (0.00 sec)

            MariaDB [db1]> SHOW WARNINGS;
            +---------+------+------------------------------------------------------------------------------------------------+
            | Level | Code | Message |
            +---------+------+------------------------------------------------------------------------------------------------+
            | Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP' |
            +---------+------+------------------------------------------------------------------------------------------------+
            1 row in set (0.00 sec)
            {noformat}

            Is there any reason to keep these in MariaDB?
            ralf.gebhardt Ralf Gebhardt made changes -
            Assignee Michael Widenius [ monty ]
            julien.fritsch Julien Fritsch made changes -
            Issue Type Task [ 3 ] New Feature [ 2 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Issue Type New Feature [ 2 ] Task [ 3 ]

            For MySQL compatibility, we have to keep the syntax (and give warnings).
            We start to get more and more users who are asking for more MySQL compatibility (to be able to run MySQL instances unchanged in MariaDB) and we have work with them regarding this!

            I did remove in 2021 ALTER TABLESPACE, DROP TABLESPACE and the 'alter_tablespace' status variable.
            (I don't remember why I did this, probably someone asked me to do that)
            If there is demand, we may have to add back the ALTER TABLESPACE and DROP TABLESPACE as 'compatible commands that does nothing.

            monty Michael Widenius added a comment - For MySQL compatibility, we have to keep the syntax (and give warnings). We start to get more and more users who are asking for more MySQL compatibility (to be able to run MySQL instances unchanged in MariaDB) and we have work with them regarding this! I did remove in 2021 ALTER TABLESPACE, DROP TABLESPACE and the 'alter_tablespace' status variable. (I don't remember why I did this, probably someone asked me to do that) If there is demand, we may have to add back the ALTER TABLESPACE and DROP TABLESPACE as 'compatible commands that does nothing.

            Needed for MySQL compatibility

            monty Michael Widenius added a comment - Needed for MySQL compatibility
            monty Michael Widenius made changes -
            Fix Version/s N/A [ 14700 ]
            Resolution Won't Fix [ 2 ]
            Status Open [ 1 ] Closed [ 6 ]
            mariadb-jira-automation Jira Automation (IT) made changes -
            Zendesk Related Tickets 194091

            People

              monty Michael Widenius
              GeoffMontee Geoff Montee (Inactive)
              Votes:
              1 Vote for this issue
              Watchers:
              8 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.