mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
14 lines
518 B
Text
14 lines
518 B
Text
|
CREATE DATABASE federated;
|
||
|
CREATE DATABASE federated;
|
||
|
CREATE TABLE t1 (a INT) ENGINE=FEDERATED CONNECTION='non_existing';
|
||
|
ERROR HY000: server name: 'non_existing' doesn't exist!
|
||
|
SHOW WARNINGS;
|
||
|
Level Code Message
|
||
|
Error 1 server name: 'non_existing' doesn't exist!
|
||
|
Error 1 Can't create/write to file 'non_existing' (Errcode: 14)
|
||
|
Error 1005 Can't create table 'test.t1' (errno: 1)
|
||
|
DROP TABLE IF EXISTS federated.t1;
|
||
|
DROP DATABASE IF EXISTS federated;
|
||
|
DROP TABLE IF EXISTS federated.t1;
|
||
|
DROP DATABASE IF EXISTS federated;
|