mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
24 lines
968 B
Text
24 lines
968 B
Text
DROP TABLE IF EXISTS t1;
|
|
CREATE DATABASE test_remote;
|
|
CREATE SERVER test_connection FOREIGN DATA WRAPPER mysql
|
|
OPTIONS (USER 'root', HOST 'localhost', DATABASE 'test_remote');
|
|
CREATE SERVER test_connection2 FOREIGN DATA WRAPPER mysql
|
|
OPTIONS (USER 'root', HOST 'localhost', DATABASE 'test_remote');
|
|
CREATE TABLE t1 (a <INT_COLUMN>, b <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS> CONNECTION='test_connection';
|
|
SHOW CREATE TABLE t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` char(8) DEFAULT NULL
|
|
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 CONNECTION='test_connection'
|
|
ALTER TABLE t1 CONNECTION='test_connection2';
|
|
SHOW CREATE TABLE t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` char(8) DEFAULT NULL
|
|
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 CONNECTION='test_connection2'
|
|
DROP TABLE t1;
|
|
DROP SERVER test_connection;
|
|
DROP SERVER test_connection2;
|
|
DROP DATABASE test_remote;
|