mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
146 lines
2.8 KiB
Plaintext
146 lines
2.8 KiB
Plaintext
#
|
|
# CREATE TABLE AS SELECT tests
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
|
|
--connection node_1
|
|
SET SESSION default_storage_engine=InnoDB;
|
|
|
|
# Left table already exists
|
|
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
--error ER_TABLE_EXISTS_ERROR
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
DROP TABLE t1,t2;
|
|
|
|
# Right table does not exist
|
|
--error ER_NO_SUCH_TABLE
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
|
|
# No right table at all
|
|
CREATE TABLE t1 AS SELECT 1 FROM DUAL;
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
|
|
--connection node_1
|
|
DROP TABLE t1;
|
|
|
|
# Empty right table
|
|
--connection node_1
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 0 FROM t1;
|
|
|
|
--connection node_1
|
|
DROP TABLE t1,t2;
|
|
|
|
# Right table is MyISAM
|
|
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=MyISAM;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
|
|
--connection node_1
|
|
DROP TABLE t1,t2;
|
|
|
|
# Right side is a subquery
|
|
|
|
--connection node_1
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TABLE t1 AS SELECT MAX(f1) AS f1 FROM t2;
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
SELECT f1 = 5 FROM t1;
|
|
|
|
--connection node_1
|
|
DROP TABLE t1,t2;
|
|
|
|
# Inside a stored procedure
|
|
|
|
--connection node_1
|
|
DELIMITER |;
|
|
CREATE PROCEDURE sp1 ()
|
|
BEGIN
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
END|
|
|
DELIMITER ;|
|
|
CALL sp1();
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 5 FROM t1;
|
|
|
|
--connection node_1
|
|
DROP TABLE t1, t2;
|
|
DROP PROCEDURE sp1;
|
|
|
|
# Inside a prepared statement
|
|
|
|
--connection node_1
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
|
|
PREPARE stmt FROM 'CREATE TABLE t1 AS SELECT * FROM t2';
|
|
EXECUTE stmt;
|
|
DEALLOCATE PREPARE stmt;
|
|
DROP TABLE t1, t2;
|
|
|
|
#
|
|
# Multi-master conflict
|
|
#
|
|
|
|
--connection node_1
|
|
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
|
|
--connect node_1a, 127.0.0.1, root, , test, $NODE_MYPORT_1
|
|
LOCK TABLE t2 WRITE;
|
|
|
|
--connection node_1
|
|
--send CREATE TABLE t1 AS SELECT * FROM t2;
|
|
|
|
--connection node_2
|
|
SELECT COUNT(*) = 5 FROM t2;
|
|
CREATE TABLE t1 AS SELECT * FROM t2;
|
|
|
|
--connection node_1a
|
|
UNLOCK TABLES;
|
|
|
|
--connection node_1
|
|
--error ER_TABLE_EXISTS_ERROR,ER_LOCK_DEADLOCK
|
|
--reap
|
|
|
|
DROP TABLE t1, t2;
|
|
|
|
#
|
|
# Temporary table
|
|
#
|
|
|
|
CREATE TABLE t2 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t2 VALUES (1),(2),(3),(4),(5);
|
|
|
|
CREATE TEMPORARY TABLE t1 AS SELECT * FROM t2;
|
|
|
|
--connection node_2
|
|
--error ER_NO_SUCH_TABLE
|
|
SELECT * FROM t1;
|
|
|
|
CALL mtr.add_suppression("Slave SQL: Error 'Unknown table 'test.t1'' on query");
|
|
|
|
--connection node_1
|
|
DROP TABLE t1, t2;
|