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
55b1f989
Commit
55b1f989
authored
Mar 16, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for the bug #3118: Subquery and order by
parent
a20bf68a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
3 deletions
+21
-3
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+8
-0
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+8
-0
sql/item.h
sql/item.h
+4
-2
sql/item_func.cc
sql/item_func.cc
+1
-1
No files found.
mysql-test/r/subselect.result
View file @
55b1f989
...
@@ -1624,3 +1624,11 @@ select 2 in (select * from t1);
...
@@ -1624,3 +1624,11 @@ select 2 in (select * from t1);
1
1
SET SQL_SELECT_LIMIT=default;
SET SQL_SELECT_LIMIT=default;
drop table t1;
drop table t1;
CREATE TABLE t1 (a int, b int, INDEX (a));
INSERT INTO t1 VALUES (1, 1), (1, 2), (1, 3);
SELECT * FROM t1 WHERE a = (SELECT MAX(a) FROM t1 WHERE a = 1) ORDER BY b;
a b
1 1
1 2
1 3
DROP TABLE t1;
mysql-test/t/subselect.test
View file @
55b1f989
...
@@ -1066,3 +1066,11 @@ select 2 in (select * from t1);
...
@@ -1066,3 +1066,11 @@ select 2 in (select * from t1);
SET
SQL_SELECT_LIMIT
=
default
;
SET
SQL_SELECT_LIMIT
=
default
;
drop
table
t1
;
drop
table
t1
;
#
# Bug #3118: subselect + order by
#
CREATE
TABLE
t1
(
a
int
,
b
int
,
INDEX
(
a
));
INSERT
INTO
t1
VALUES
(
1
,
1
),
(
1
,
2
),
(
1
,
3
);
SELECT
*
FROM
t1
WHERE
a
=
(
SELECT
MAX
(
a
)
FROM
t1
WHERE
a
=
1
)
ORDER
BY
b
;
DROP
TABLE
t1
;
sql/item.h
View file @
55b1f989
...
@@ -428,8 +428,10 @@ class Item_uint :public Item_int
...
@@ -428,8 +428,10 @@ class Item_uint :public Item_int
{
{
public:
public:
Item_uint
(
const
char
*
str_arg
,
uint
length
)
:
Item_uint
(
const
char
*
str_arg
,
uint
length
)
:
Item_int
(
str_arg
,
(
longlong
)
strtoull
(
str_arg
,(
char
**
)
0
,
10
),
length
)
{}
Item_int
(
str_arg
,
(
longlong
)
strtoull
(
str_arg
,(
char
**
)
0
,
10
),
length
)
Item_uint
(
uint32
i
)
:
Item_int
((
longlong
)
i
,
10
)
{}
{
fixed
=
0
;
}
Item_uint
(
uint32
i
)
:
Item_int
((
longlong
)
i
,
10
)
{
fixed
=
0
;
}
double
val
()
{
return
ulonglong2double
((
ulonglong
)
value
);
}
double
val
()
{
return
ulonglong2double
((
ulonglong
)
value
);
}
String
*
val_str
(
String
*
);
String
*
val_str
(
String
*
);
Item
*
new_item
()
{
return
new
Item_uint
(
name
,
max_length
);
}
Item
*
new_item
()
{
return
new
Item_uint
(
name
,
max_length
);
}
...
...
sql/item_func.cc
View file @
55b1f989
...
@@ -205,7 +205,7 @@ Item_func::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
...
@@ -205,7 +205,7 @@ Item_func::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
{
{
Item
*
item
;
Item
*
item
;
/* We can't yet set item to *arg as fix_fields may change *arg */
/* We can't yet set item to *arg as fix_fields may change *arg */
if
((
*
arg
)
->
fix_fields
(
thd
,
tables
,
arg
)
||
if
((
!
(
*
arg
)
->
fixed
&&
(
*
arg
)
->
fix_fields
(
thd
,
tables
,
arg
)
)
||
(
*
arg
)
->
check_cols
(
allowed_arg_cols
))
(
*
arg
)
->
check_cols
(
allowed_arg_cols
))
return
1
;
/* purecov: inspected */
return
1
;
/* purecov: inspected */
item
=
*
arg
;
item
=
*
arg
;
...
...
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