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
737e1664
Commit
737e1664
authored
Jun 19, 2006
by
svoj@may.pils.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge april:devel/BitKeeper/mysql-4.1
into may.pils.ru:/home/svoj/devel/mysql/BUG18036/mysql-4.1
parents
c02e6f2a
37cdb0fb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
mysql-test/r/myisam.result
mysql-test/r/myisam.result
+8
-0
mysql-test/t/myisam.test
mysql-test/t/myisam.test
+9
-0
sql/sql_update.cc
sql/sql_update.cc
+1
-1
No files found.
mysql-test/r/myisam.result
View file @
737e1664
...
...
@@ -748,3 +748,11 @@ select count(id1) from t1 where id2 = 10;
count(id1)
5
drop table t1;
CREATE TABLE t1(a CHAR(9), b VARCHAR(7)) ENGINE=MyISAM;
INSERT INTO t1(a) VALUES('xxxxxxxxx'),('xxxxxxxxx');
UPDATE t1 AS ta1,t1 AS ta2 SET ta1.b='aaaaaa',ta2.b='bbbbbb';
SELECT * FROM t1;
a b
xxxxxxxxx bbbbbb
xxxxxxxxx bbbbbb
DROP TABLE t1;
mysql-test/t/myisam.test
View file @
737e1664
...
...
@@ -705,4 +705,13 @@ select count(*) from t1 where id2 = 10;
select
count
(
id1
)
from
t1
where
id2
=
10
;
drop
table
t1
;
#
# BUG#18036 - update of table joined to self reports table as crashed
#
CREATE
TABLE
t1
(
a
CHAR
(
9
),
b
VARCHAR
(
7
))
ENGINE
=
MyISAM
;
INSERT
INTO
t1
(
a
)
VALUES
(
'xxxxxxxxx'
),(
'xxxxxxxxx'
);
UPDATE
t1
AS
ta1
,
t1
AS
ta2
SET
ta1
.
b
=
'aaaaaa'
,
ta2
.
b
=
'bbbbbb'
;
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
# End of 4.1 tests
sql/sql_update.cc
View file @
737e1664
...
...
@@ -862,7 +862,7 @@ int multi_update::prepare(List<Item> ¬_used_values,
for
(
table_ref
=
all_tables
;
table_ref
;
table_ref
=
table_ref
->
next
)
{
TABLE
*
table
=
table_ref
->
table
;
if
(
!
(
tables_to_update
&
table
->
map
)
&&
if
((
tables_to_update
&
table
->
map
)
&&
mysql_lock_have_duplicate
(
thd
,
table
,
update_tables
))
table
->
no_cache
=
1
;
// Disable row cache
}
...
...
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