Details
Description
Test case below to reproduce the bug using FederatedX engine.
On the first server (remote, runs on 127.0.0.1 port 3310):
CREATE DATABASE mdev; |
USE mdev; |
CREATE TABLE `t1` ( `a` int(11)) ENGINE=InnoDB; |
On the second server (local):
CREATE TABLE `t1` ( `a` int(11)) ENGINE=FEDERATED CONNECTION='mysql://root@127.0.0.1:3310/mdev/t1' |
|
CREATE TABLE `t2` (`a` int(11)) ENGINE=InnoDB; |
|
SELECT * FROM t2, (SELECT * FROM t1 WHERE a > 3) dt WHERE t2.a=dt.a; |
Attachments
Issue Links
- relates to
-
MDEV-29505 LeakSanitizer errors in TABLE_LIST::find_derived_handler after federated.federatedx_create_handlers with PS protocol
- Open
-
MDEV-29655 ASAN heap-use-after-free in Pushdown_derived::Pushdown_derived
- Closed
-
MDEV-25080 Allow pushdown of queries involving UNIONs in outer select to foreign engines
- Closed