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
559b799d
Commit
559b799d
authored
Nov 26, 2007
by
kaa@polly.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge polly.(none):/home/kaa/src/opt/bug28837/my51-bug29131
into polly.(none):/home/kaa/src/opt/mysql-5.1-opt
parents
9ef3ed6f
bc10c6db
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
108 additions
and
2 deletions
+108
-2
mysql-test/r/merge.result
mysql-test/r/merge.result
+37
-0
mysql-test/r/myisam.result
mysql-test/r/myisam.result
+22
-0
mysql-test/t/merge.test
mysql-test/t/merge.test
+22
-0
mysql-test/t/myisam.test
mysql-test/t/myisam.test
+17
-0
storage/myisam/ha_myisam.cc
storage/myisam/ha_myisam.cc
+5
-1
storage/myisammrg/ha_myisammrg.cc
storage/myisammrg/ha_myisammrg.cc
+5
-1
No files found.
mysql-test/r/merge.result
View file @
559b799d
...
...
@@ -884,4 +884,41 @@ CREATE TABLE t2 (c1 INT) ENGINE=MERGE UNION=(t1) INSERT_METHOD=FIRST;
CREATE TABLE IF NOT EXISTS t1 SELECT * FROM t2;
ERROR HY000: You can't specify target table 't1' for update in FROM clause
DROP TABLE t1, t2;
CREATE TABLE t1 (id INT NOT NULL, ref INT NOT NULL, INDEX (id)) ENGINE=MyISAM;
CREATE TABLE t2 LIKE t1;
INSERT INTO t2 (id, ref) VALUES (1,3), (2,1), (3,2), (4,5), (4,4);
INSERT INTO t1 SELECT * FROM t2;
INSERT INTO t1 SELECT * FROM t2;
CREATE TABLE t3 (id INT NOT NULL, ref INT NOT NULL, INDEX (id)) ENGINE=MERGE
UNION(t1);
SELECT * FROM t3 AS a INNER JOIN t3 AS b USING (id) WHERE a.ref < b.ref;
id ref ref
4 4 5
4 4 5
4 4 5
4 4 5
SELECT * FROM t3;
id ref
1 3
2 1
3 2
4 5
4 4
1 3
2 1
3 2
4 5
4 4
DELETE FROM a USING t3 AS a INNER JOIN t3 AS b USING (id) WHERE a.ref < b.ref;
SELECT * FROM t3;
id ref
1 3
2 1
3 2
4 5
1 3
2 1
3 2
4 5
DROP TABLE t1, t2, t3;
End of 5.0 tests
mysql-test/r/myisam.result
View file @
559b799d
...
...
@@ -1819,6 +1819,28 @@ SHOW TABLE STATUS LIKE 't1';
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1 MyISAM 10 Fixed 1 # # # 3072 # # # # # # #
DROP TABLE t1;
CREATE TABLE t1 (id int NOT NULL, ref int NOT NULL, INDEX (id)) ENGINE=MyISAM;
CREATE TABLE t2 LIKE t1;
INSERT INTO t2 (id, ref) VALUES (1,3), (2,1), (3,2), (4,5), (4,4);
INSERT INTO t1 SELECT * FROM t2;
SELECT * FROM t1 AS a INNER JOIN t1 AS b USING (id) WHERE a.ref < b.ref;
id ref ref
4 4 5
SELECT * FROM t1;
id ref
1 3
2 1
3 2
4 5
4 4
DELETE FROM a USING t1 AS a INNER JOIN t1 AS b USING (id) WHERE a.ref < b.ref;
SELECT * FROM t1;
id ref
1 3
2 1
3 2
4 5
DROP TABLE t1, t2;
End of 5.0 tests
create table t1 (a int not null, key `a` (a) key_block_size=1024);
show create table t1;
...
...
mysql-test/t/merge.test
View file @
559b799d
...
...
@@ -525,4 +525,26 @@ CREATE TABLE t2 (c1 INT) ENGINE=MERGE UNION=(t1) INSERT_METHOD=FIRST;
CREATE
TABLE
IF
NOT
EXISTS
t1
SELECT
*
FROM
t2
;
DROP
TABLE
t1
,
t2
;
#
# Bug #28837: MyISAM storage engine error (134) doing delete with self-join
#
CREATE
TABLE
t1
(
id
INT
NOT
NULL
,
ref
INT
NOT
NULL
,
INDEX
(
id
))
ENGINE
=
MyISAM
;
CREATE
TABLE
t2
LIKE
t1
;
INSERT
INTO
t2
(
id
,
ref
)
VALUES
(
1
,
3
),
(
2
,
1
),
(
3
,
2
),
(
4
,
5
),
(
4
,
4
);
INSERT
INTO
t1
SELECT
*
FROM
t2
;
INSERT
INTO
t1
SELECT
*
FROM
t2
;
CREATE
TABLE
t3
(
id
INT
NOT
NULL
,
ref
INT
NOT
NULL
,
INDEX
(
id
))
ENGINE
=
MERGE
UNION
(
t1
);
SELECT
*
FROM
t3
AS
a
INNER
JOIN
t3
AS
b
USING
(
id
)
WHERE
a
.
ref
<
b
.
ref
;
SELECT
*
FROM
t3
;
DELETE
FROM
a
USING
t3
AS
a
INNER
JOIN
t3
AS
b
USING
(
id
)
WHERE
a
.
ref
<
b
.
ref
;
SELECT
*
FROM
t3
;
DROP
TABLE
t1
,
t2
,
t3
;
--
echo
End
of
5.0
tests
mysql-test/t/myisam.test
View file @
559b799d
...
...
@@ -1172,6 +1172,23 @@ SHOW TABLE STATUS LIKE 't1';
#--exec myisamchk -iev var/master-data/test/t1.MYI
DROP
TABLE
t1
;
#
# Bug#28837: MyISAM storage engine error (134) doing delete with self-join
#
CREATE
TABLE
t1
(
id
int
NOT
NULL
,
ref
int
NOT
NULL
,
INDEX
(
id
))
ENGINE
=
MyISAM
;
CREATE
TABLE
t2
LIKE
t1
;
INSERT
INTO
t2
(
id
,
ref
)
VALUES
(
1
,
3
),
(
2
,
1
),
(
3
,
2
),
(
4
,
5
),
(
4
,
4
);
INSERT
INTO
t1
SELECT
*
FROM
t2
;
SELECT
*
FROM
t1
AS
a
INNER
JOIN
t1
AS
b
USING
(
id
)
WHERE
a
.
ref
<
b
.
ref
;
SELECT
*
FROM
t1
;
DELETE
FROM
a
USING
t1
AS
a
INNER
JOIN
t1
AS
b
USING
(
id
)
WHERE
a
.
ref
<
b
.
ref
;
SELECT
*
FROM
t1
;
DROP
TABLE
t1
,
t2
;
--
echo
End
of
5.0
tests
...
...
storage/myisam/ha_myisam.cc
View file @
559b799d
...
...
@@ -1649,9 +1649,13 @@ int ha_myisam::index_next_same(uchar *buf,
const
uchar
*
key
__attribute__
((
unused
)),
uint
length
__attribute__
((
unused
)))
{
int
error
;
DBUG_ASSERT
(
inited
==
INDEX
);
ha_statistic_increment
(
&
SSV
::
ha_read_next_count
);
int
error
=
mi_rnext_same
(
file
,
buf
);
do
{
error
=
mi_rnext_same
(
file
,
buf
);
}
while
(
error
==
HA_ERR_RECORD_DELETED
);
table
->
status
=
error
?
STATUS_NOT_FOUND
:
0
;
return
error
;
}
...
...
storage/myisammrg/ha_myisammrg.cc
View file @
559b799d
...
...
@@ -271,8 +271,12 @@ int ha_myisammrg::index_next_same(uchar * buf,
const
uchar
*
key
__attribute__
((
unused
)),
uint
length
__attribute__
((
unused
)))
{
int
error
;
ha_statistic_increment
(
&
SSV
::
ha_read_next_count
);
int
error
=
myrg_rnext_same
(
file
,
buf
);
do
{
error
=
myrg_rnext_same
(
file
,
buf
);
}
while
(
error
==
HA_ERR_RECORD_DELETED
);
table
->
status
=
error
?
STATUS_NOT_FOUND
:
0
;
return
error
;
}
...
...
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