mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
14 lines
560 B
Plaintext
14 lines
560 B
Plaintext
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 "Bad address")
|
|
Error 1005 Can't create table `test`.`t1` (errno: 1 "Operation not permitted")
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
DROP DATABASE IF EXISTS federated;
|
|
DROP TABLE IF EXISTS federated.t1;
|
|
DROP DATABASE IF EXISTS federated;
|