Skip to content

Commit

Permalink
MDEV-32046 Adding ER_NET_READ_ERROR to spider/bugfix.mdev_27240
Browse files Browse the repository at this point in the history
  • Loading branch information
mariadb-YuchenPei committed Oct 5, 2023
1 parent a60cf9c commit ef14d6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -9,7 +9,7 @@ ERROR 42S22: Unknown column 'a.z' in 'field list'
ALTER TABLE tbl_a CHANGE c c INT;
ERROR 42S22: Unknown column 'c' in 'tbl_a'
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;
for master_1
for child2
Expand Down
3 changes: 2 additions & 1 deletion storage/spider/mysql-test/spider/bugfix/t/mdev_27240.test
Expand Up @@ -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;
--error ER_BAD_FIELD_ERROR
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;

DROP DATABASE auto_test_local;
Expand Down

0 comments on commit ef14d6d

Please sign in to comment.