Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
11.1(EOL), 11.2, 11.3(EOL)
-
None
Description
--source include/master-slave.inc
|
|
connection slave;
|
CREATE TABLE t1 (id int);
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
connection master;
|
INSTALL SONAME 'ha_federatedx';
|
set global federated_pushdown=1;
|
|
--replace_result $SLAVE_MYPORT SLAVE_PORT
|
eval CREATE TABLE t1 ENGINE="FEDERATED" CONNECTION="mysql://root@127.0.0.1:$SLAVE_MYPORT/test/t1";
|
|
with cte as (select * from t1) select * from cte;
|
mysqltest: At line 15: query 'with cte as (select * from t1) select * from cte' failed: ER_GET_ERRNO (1030): Got error 10000 "Unknown error 10000" from storage engine FEDERATED