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
dc3f0a21
Commit
dc3f0a21
authored
Feb 13, 2004
by
vva@eagle.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.0
into eagle.mysql.r18.ru:/home/vva/work/BUG_2898/mysql-4.0
parents
0588ac77
da662e9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
0 deletions
+47
-0
mysql-test/r/select_found.result
mysql-test/r/select_found.result
+18
-0
mysql-test/t/select_found.test
mysql-test/t/select_found.test
+28
-0
sql/opt_range.cc
sql/opt_range.cc
+1
-0
No files found.
mysql-test/r/select_found.result
View file @
dc3f0a21
...
...
@@ -188,3 +188,21 @@ select FOUND_ROWS();
FOUND_ROWS()
0
drop table t1;
CREATE TABLE t1 ( a int not null, b int not null, KEY ab(a,b) );
INSERT INTO t1 VALUES ( 47, 1 );
INSERT INTO t1 VALUES ( 70, 1 );
SELECT * FROM t1
WHERE
(
( b =1 AND a BETWEEN 14 AND 21 ) OR
( b =2 AND a BETWEEN 16 AND 18 ) OR
( b =3 AND a BETWEEN 15 AND 19 )
);
a b
DROP TABLE t1;
CREATE TABLE t1 ( a integer, u varchar(15), r integer, key uao_idx( r, a, u));
DELETE FROM t1
WHERE ( r = 1 AND a IN ( 1, 2 ) AND ( u = 'w' OR u LIKE 'w/%' ) )
OR ( r = 1 AND a IN ( 3 ) AND ( u = 'w/U' OR u LIKE 'w/U/%' ) )
OR ( r = 1 AND a IN ( 1, 2, 3 ) AND ( u = 'w' ) );
drop table t1;
mysql-test/t/select_found.test
View file @
dc3f0a21
...
...
@@ -99,3 +99,31 @@ select FOUND_ROWS();
select
SQL_CALC_FOUND_ROWS
*
from
t1
where
id
>
6
limit
0
,
1
;
select
FOUND_ROWS
();
drop
table
t1
;
#
# Other bugs with range optimization
#
# bug #2448
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
KEY
ab
(
a
,
b
)
);
INSERT
INTO
t1
VALUES
(
47
,
1
);
INSERT
INTO
t1
VALUES
(
70
,
1
);
SELECT
*
FROM
t1
WHERE
(
(
b
=
1
AND
a
BETWEEN
14
AND
21
)
OR
(
b
=
2
AND
a
BETWEEN
16
AND
18
)
OR
(
b
=
3
AND
a
BETWEEN
15
AND
19
)
);
DROP
TABLE
t1
;
# bug #2698
CREATE
TABLE
t1
(
a
integer
,
u
varchar
(
15
),
r
integer
,
key
uao_idx
(
r
,
a
,
u
));
DELETE
FROM
t1
WHERE
(
r
=
1
AND
a
IN
(
1
,
2
)
AND
(
u
=
'w'
OR
u
LIKE
'w/%'
)
)
OR
(
r
=
1
AND
a
IN
(
3
)
AND
(
u
=
'w/U'
OR
u
LIKE
'w/U/%'
)
)
OR
(
r
=
1
AND
a
IN
(
1
,
2
,
3
)
AND
(
u
=
'w'
)
);
drop
table
t1
;
sql/opt_range.cc
View file @
dc3f0a21
...
...
@@ -488,6 +488,7 @@ SEL_ARG *SEL_ARG::clone(SEL_ARG *new_parent,SEL_ARG **next_arg)
return
0
;
// OOM
}
increment_use_count
(
1
);
tmp
->
color
=
color
;
return
tmp
;
}
...
...
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