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
acd90be6
Commit
acd90be6
authored
Feb 03, 2005
by
acurtis@pcgem.rdg.cyberkinetica.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#7310
Fix test for classic builds
parent
e24d97ae
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
mysql-test/t/multi_update.test
mysql-test/t/multi_update.test
+2
-0
No files found.
mysql-test/t/multi_update.test
View file @
acd90be6
...
...
@@ -340,8 +340,10 @@ drop table t1, t2;
# Test for BUG#5837 - delete with outer join and const tables
drop
table
if
exists
t2
,
t1
;
--
disable_warnings
create
table
t1
(
aclid
bigint
not
null
primary
key
,
status
tinyint
(
1
)
not
null
)
type
=
innodb
;
create
table
t2
(
refid
bigint
not
null
primary
key
,
aclid
bigint
,
index
idx_acl
(
aclid
)
)
type
=
innodb
;
--
enable_warnings
insert
into
t2
values
(
1
,
null
);
delete
t2
,
t1
from
t2
as
a
left
join
t1
as
b
on
(
a
.
aclid
=
b
.
aclid
)
where
a
.
refid
=
'1'
;
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