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
40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
CREATE DATABASE federated;
|
|
CREATE DATABASE federated;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
Warnings:
|
|
Note 1051 Unknown table 't1'
|
|
CREATE TABLE federated.t1 (
|
|
`id` int(20) NOT NULL,
|
|
`name` varchar(32) NOT NULL default ''
|
|
)
|
|
DEFAULT CHARSET=latin1 ENGINE=innodb;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
Warnings:
|
|
Note 1051 Unknown table 't1'
|
|
CREATE TABLE federated.t1 (
|
|
`id` int(20) NOT NULL,
|
|
`name` varchar(32) NOT NULL default ''
|
|
)
|
|
ENGINE="FEDERATED" DEFAULT CHARSET=latin1
|
|
CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/federated/t1';
|
|
set autocommit=0;
|
|
INSERT INTO federated.t1 (id, name) VALUES (1, 'foo');
|
|
INSERT INTO federated.t1 (id, name) VALUES (2, 'fee');
|
|
COMMIT;
|
|
INSERT INTO federated.t1 (id, name) VALUES (3, 'fie');
|
|
INSERT INTO federated.t1 (id, name) VALUES (4, 'fum');
|
|
ROLLBACK;
|
|
set autocommit=1;
|
|
INSERT INTO federated.t1 (id, name) VALUES (5, 'foe');
|
|
INSERT INTO federated.t1 (id, name) VALUES (6, 'fig');
|
|
SELECT * FROM federated.t1;
|
|
id name
|
|
1 foo
|
|
2 fee
|
|
5 foe
|
|
6 fig
|
|
DELETE FROM federated.t1;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
DROP DATABASE IF EXISTS federated;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
DROP DATABASE IF EXISTS federated;
|