mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-12914: Engine for temporary tables which are implicitly created as RocksDB is substituted silently
- There should be no substitution if engine exists, only when doesn't
exist
- Handling of an error when sys_var `default_tmp_storage_engine` is
assigned to unsupported engine.
- rocksdb doesn't support embedded server ebfc4e6ad0
so is excluded
Closes PR #774
Reviewed by: serg@mariadb.com
vicentiu@mariadb.org
This commit is contained in:
@ -788,7 +788,7 @@ PARTITION BY HASH (c) PARTITIONS 4;
|
||||
--echo # with temporary table and partitions
|
||||
--echo #
|
||||
CREATE TABLE t1 (a INT) PARTITION BY HASH(a);
|
||||
--error ER_FEATURE_NOT_SUPPORTED_WITH_PARTITIONING
|
||||
--error ER_ILLEGAL_HA_CREATE_OPTION
|
||||
CREATE TEMPORARY TABLE tmp_t1 LIKE t1;
|
||||
DROP TABLE t1;
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user