mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
12 lines
280 B
Text
12 lines
280 B
Text
source include/federated.inc;
|
|
|
|
connection master;
|
|
#
|
|
# MDEV-388 Creating a federated table with a non-existing server returns a random error code
|
|
#
|
|
--error 1
|
|
CREATE TABLE t1 (a INT) ENGINE=FEDERATED CONNECTION='non_existing';
|
|
SHOW WARNINGS;
|
|
|
|
source include/federated_cleanup.inc;
|
|
|