Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ef14d6d6
Commit
ef14d6d6
authored
Oct 06, 2023
by
Yuchen Pei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-32046 Adding ER_NET_READ_ERROR to spider/bugfix.mdev_27240
parent
a60cf9c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
storage/spider/mysql-test/spider/bugfix/r/mdev_27240.result
storage/spider/mysql-test/spider/bugfix/r/mdev_27240.result
+1
-1
storage/spider/mysql-test/spider/bugfix/t/mdev_27240.test
storage/spider/mysql-test/spider/bugfix/t/mdev_27240.test
+2
-1
No files found.
storage/spider/mysql-test/spider/bugfix/r/mdev_27240.result
View file @
ef14d6d6
...
@@ -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
...
...
storage/spider/mysql-test/spider/bugfix/t/mdev_27240.test
View file @
ef14d6d6
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment