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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
e7391e47
Commit
e7391e47
authored
Dec 22, 2014
by
Thiru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #19815702 TIS620: CRASH WITH MULTI TABLE DELETE
- Moving the test case to correct place.
parent
8e94f128
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
22 deletions
+0
-22
mysql-test/suite/innodb/r/multi_delete.result
mysql-test/suite/innodb/r/multi_delete.result
+0
-14
mysql-test/suite/innodb/t/multi_delete.test
mysql-test/suite/innodb/t/multi_delete.test
+0
-8
No files found.
mysql-test/suite/innodb/r/multi_delete.result
deleted
100644 → 0
View file @
8e94f128
create table t1 (a int,b varchar(100) ,d blob,primary key (a,d(10), b(10))) engine=innodb;
insert into t1 values (1,'e','a'),(5,'f','5'), (3,'a','b');
create table t2 (a int) engine=innodb;
insert into t2() values(4),(5);
delete t1 from t1, t2 where t1.a;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL DEFAULT '0',
`b` varchar(100) NOT NULL DEFAULT '',
`d` blob NOT NULL,
PRIMARY KEY (`a`,`d`(10),`b`(10))
) ENGINE=InnoDB DEFAULT CHARSET=latin1
drop table t1, t2;
mysql-test/suite/innodb/t/multi_delete.test
deleted
100644 → 0
View file @
8e94f128
--
source
include
/
have_innodb
.
inc
create
table
t1
(
a
int
,
b
varchar
(
100
)
,
d
blob
,
primary
key
(
a
,
d
(
10
),
b
(
10
)))
engine
=
innodb
;
insert
into
t1
values
(
1
,
'e'
,
'a'
),(
5
,
'f'
,
'5'
),
(
3
,
'a'
,
'b'
);
create
table
t2
(
a
int
)
engine
=
innodb
;
insert
into
t2
()
values
(
4
),(
5
);
delete
t1
from
t1
,
t2
where
t1
.
a
;
show
create
table
t1
;
drop
table
t1
,
t2
;
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