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
dd7e9fb3
Commit
dd7e9fb3
authored
Jun 27, 2022
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-28854 after-merge fix: Remove a test for MDEV-26583
parent
01d75703
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
81 deletions
+0
-81
storage/spider/mysql-test/spider/bugfix/r/mdev_26583.result
storage/spider/mysql-test/spider/bugfix/r/mdev_26583.result
+0
-34
storage/spider/mysql-test/spider/bugfix/t/mdev_26583.cnf
storage/spider/mysql-test/spider/bugfix/t/mdev_26583.cnf
+0
-3
storage/spider/mysql-test/spider/bugfix/t/mdev_26583.test
storage/spider/mysql-test/spider/bugfix/t/mdev_26583.test
+0
-44
No files found.
storage/spider/mysql-test/spider/bugfix/r/mdev_26583.result
deleted
100644 → 0
View file @
01d75703
#
# MDEV-26583 SIGSEGV's in spider_get_select_limit_from_select_lex when DELAYED INSERT is used
#
for master_1
for child2
child2_1
child2_2
child2_3
for child3
connection child2_1;
CREATE DATABASE auto_test_remote;
USE auto_test_remote;
CREATE TABLE tbl_a (
a INT AUTO_INCREMENT KEY,
b INT,INDEX i (b)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
connection master_1;
CREATE DATABASE auto_test_local;
USE auto_test_local;
CREATE TABLE tbl_a (
a INT AUTO_INCREMENT KEY,
b INT,INDEX i (b)
) ENGINE=Spider DEFAULT CHARSET=utf8 COMMENT='srv "s_2_1", table "tbl_a"';
INSERT DELAYED INTO tbl_a VALUES (0,0),(0,0),(0,0);
connection master_1;
DROP DATABASE auto_test_local;
connection child2_1;
DROP DATABASE auto_test_remote;
for master_1
for child2
child2_1
child2_2
child2_3
for child3
storage/spider/mysql-test/spider/bugfix/t/mdev_26583.cnf
deleted
100644 → 0
View file @
01d75703
!include include/default_mysqld.cnf
!include ../my_1_1.cnf
!include ../my_2_1.cnf
storage/spider/mysql-test/spider/bugfix/t/mdev_26583.test
deleted
100644 → 0
View file @
01d75703
--
echo
#
--
echo
# MDEV-26583 SIGSEGV's in spider_get_select_limit_from_select_lex when DELAYED INSERT is used
--
echo
#
--
disable_query_log
--
disable_result_log
--
source
../../
t
/
test_init
.
inc
--
enable_result_log
--
enable_query_log
--
connection
child2_1
CREATE
DATABASE
auto_test_remote
;
USE
auto_test_remote
;
eval
CREATE
TABLE
tbl_a
(
a
INT
AUTO_INCREMENT
KEY
,
b
INT
,
INDEX
i
(
b
)
)
$CHILD2_1_ENGINE
$CHILD2_1_CHARSET
;
--
connection
master_1
CREATE
DATABASE
auto_test_local
;
USE
auto_test_local
;
eval
CREATE
TABLE
tbl_a
(
a
INT
AUTO_INCREMENT
KEY
,
b
INT
,
INDEX
i
(
b
)
)
$MASTER_1_ENGINE
$MASTER_1_CHARSET
COMMENT
=
'srv "s_2_1", table "tbl_a"'
;
INSERT
DELAYED
INTO
tbl_a
VALUES
(
0
,
0
),(
0
,
0
),(
0
,
0
);
let
$wait_condition
=
select
count
(
*
)
=
3
from
tbl_a
source
include
/
wait_condition
.
inc
;
--
connection
master_1
DROP
DATABASE
auto_test_local
;
--
connection
child2_1
DROP
DATABASE
auto_test_remote
;
--
disable_query_log
--
disable_result_log
--
source
../../
t
/
test_deinit
.
inc
--
enable_result_log
--
enable_query_log
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