mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
226f0c7601
Fixed compiler warnings client/mysqladmin.cc: Fixed compiler warning extra/yassl/taocrypt/src/twofish.cpp: Fixed compiler warning libmysqld/Makefile.am: Use federatedx instead of federated (Should actually be removed) mysql-test/mysql-test-run.pl: Fixed warning mysql-test/valgrind.supp: Removed warning found on 64 bit Linux machine storage/pbxt/src/cache_xt.cc: Fixed compile warning storage/xtradb/include/buf0buf.ic: Fixed compiler warning
39 lines
1.3 KiB
Text
39 lines
1.3 KiB
Text
CREATE DATABASE federated;
|
|
CREATE DATABASE federated;
|
|
DROP TABLE IF EXISTS federated.archive_table;
|
|
CREATE TABLE federated.archive_table (
|
|
`id` int(4) NOT NULL,
|
|
`name` varchar(54) default NULL
|
|
) ENGINE=ARCHIVE DEFAULT CHARSET=latin1;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
CREATE TABLE federated.t1 (
|
|
`id` int(4) NOT NULL,
|
|
`name` varchar(54) default NULL,
|
|
PRIMARY KEY (`id`)
|
|
)
|
|
ENGINE="FEDERATED" DEFAULT CHARSET=latin1
|
|
CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/federated/archive_table';
|
|
INSERT INTO federated.t1 (id, name) VALUES (1, 'foo');
|
|
INSERT INTO federated.t1 (id, name) VALUES (2, 'bar');
|
|
SELECT * FROM federated.t1;
|
|
id name
|
|
1 foo
|
|
2 bar
|
|
DELETE FROM federated.t1 WHERE id = 1;
|
|
ERROR HY000: Got error 10000 'Error on remote system: 1031: Table storage engine for 'archive_table' doesn't have this option' from FEDERATED
|
|
SELECT * FROM federated.t1;
|
|
id name
|
|
1 foo
|
|
2 bar
|
|
UPDATE federated.t1 SET name='baz' WHERE id = 1;
|
|
ERROR HY000: Got error 10000 'Error on remote system: 1031: Table storage engine for 'archive_table' doesn't have this option' from FEDERATED
|
|
SELECT * FROM federated.t1;
|
|
id name
|
|
1 foo
|
|
2 bar
|
|
DROP TABLE federated.t1;
|
|
DROP TABLE federated.archive_table;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
DROP DATABASE IF EXISTS federated;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
DROP DATABASE IF EXISTS federated;
|