mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
18 lines
366 B
Plaintext
18 lines
366 B
Plaintext
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
#
|
|
# Test ALTER ENGINE from InnoDB to InnoDB
|
|
#
|
|
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
ALTER TABLE t1 ENGINE=InnoDB;
|
|
|
|
--connection node_2
|
|
SELECT ENGINE = 'InnoDB' FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 't1';
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
|
|
DROP TABLE t1;
|