mirror of
https://github.com/MariaDB/server.git
synced 2025-11-28 17:36:30 +03:00
13 lines
280 B
Plaintext
13 lines
280 B
Plaintext
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;
|
|
|