Commit ef14d6d6 authored by Yuchen Pei's avatar Yuchen Pei

MDEV-32046 Adding ER_NET_READ_ERROR to spider/bugfix.mdev_27240

parent a60cf9c7
...@@ -9,7 +9,7 @@ ERROR 42S22: Unknown column 'a.z' in 'field list' ...@@ -9,7 +9,7 @@ ERROR 42S22: Unknown column 'a.z' in 'field list'
ALTER TABLE tbl_a CHANGE c c INT; ALTER TABLE tbl_a CHANGE c c INT;
ERROR 42S22: Unknown column 'c' in 'tbl_a' ERROR 42S22: Unknown column 'c' in 'tbl_a'
LOCK TABLE tbl_a READ; LOCK TABLE tbl_a READ;
ERROR HY000: Unable to connect to foreign data source: localhost Got one of the listed errors
DROP DATABASE auto_test_local; DROP DATABASE auto_test_local;
for master_1 for master_1
for child2 for child2
......
...@@ -14,7 +14,8 @@ CREATE TABLE tbl_a (a INT KEY) ENGINE=SPIDER; ...@@ -14,7 +14,8 @@ CREATE TABLE tbl_a (a INT KEY) ENGINE=SPIDER;
SELECT a.z FROM tbl_a AS a,tbl_a b WHERE a.z=b.z; SELECT a.z FROM tbl_a AS a,tbl_a b WHERE a.z=b.z;
--error ER_BAD_FIELD_ERROR --error ER_BAD_FIELD_ERROR
ALTER TABLE tbl_a CHANGE c c INT; ALTER TABLE tbl_a CHANGE c c INT;
--error ER_CONNECT_TO_FOREIGN_DATA_SOURCE # FIXME: MDEV-32046
--error ER_CONNECT_TO_FOREIGN_DATA_SOURCE,ER_NET_READ_ERROR
LOCK TABLE tbl_a READ; LOCK TABLE tbl_a READ;
DROP DATABASE auto_test_local; DROP DATABASE auto_test_local;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment