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
d1fb7dad
Commit
d1fb7dad
authored
Oct 03, 2008
by
Mats Kindahl
Browse files
Options
Browse Files
Download
Plain Diff
Merging with 5.1-5.1.29-rc.
parents
acfd0ff7
2ab558de
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
90 additions
and
4 deletions
+90
-4
mysql-test/r/func_group.result
mysql-test/r/func_group.result
+37
-0
mysql-test/suite/ndb/t/disabled.def
mysql-test/suite/ndb/t/disabled.def
+0
-1
mysql-test/t/func_group.test
mysql-test/t/func_group.test
+40
-0
sql/item.cc
sql/item.cc
+1
-0
sql/item.h
sql/item.h
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
sql/sql_select.cc
sql/sql_select.cc
+10
-1
No files found.
mysql-test/r/func_group.result
View file @
d1fb7dad
...
@@ -1416,4 +1416,41 @@ SELECT AVG(a), CAST(AVG(a) AS DECIMAL) FROM t1;
...
@@ -1416,4 +1416,41 @@ SELECT AVG(a), CAST(AVG(a) AS DECIMAL) FROM t1;
AVG(a) CAST(AVG(a) AS DECIMAL)
AVG(a) CAST(AVG(a) AS DECIMAL)
15 15
15 15
DROP TABLE t1;
DROP TABLE t1;
CREATE TABLE derived1 (a bigint(21));
INSERT INTO derived1 VALUES (2);
CREATE TABLE D (
pk int(11) NOT NULL AUTO_INCREMENT,
int_nokey int(11) DEFAULT NULL,
int_key int(11) DEFAULT NULL,
filler blob,
PRIMARY KEY (pk),
KEY int_key (int_key)
);
INSERT INTO D VALUES
(39,40,4,repeat(' X', 42)),
(43,56,4,repeat(' X', 42)),
(47,12,4,repeat(' X', 42)),
(71,28,4,repeat(' X', 42)),
(76,54,4,repeat(' X', 42)),
(83,45,4,repeat(' X', 42)),
(105,53,12,NULL);
SELECT
(SELECT COUNT( int_nokey )
FROM derived1 AS X
WHERE
X.int_nokey < 61
GROUP BY pk
LIMIT 1)
FROM D AS X
WHERE X.int_key < 13
GROUP BY int_nokey LIMIT 1;
(SELECT COUNT( int_nokey )
FROM derived1 AS X
WHERE
X.int_nokey < 61
GROUP BY pk
LIMIT 1)
1
DROP TABLE derived1;
DROP TABLE D;
End of 5.0 tests
End of 5.0 tests
mysql-test/suite/ndb/t/disabled.def
View file @
d1fb7dad
...
@@ -12,6 +12,5 @@
...
@@ -12,6 +12,5 @@
partition_03ndb : BUG#16385 2006-03-24 mikael Partitions: crash when updating a range partitioned NDB table
partition_03ndb : BUG#16385 2006-03-24 mikael Partitions: crash when updating a range partitioned NDB table
ndb_partition_error2 : HF is not sure if the test can work as internded on all the platforms
ndb_partition_error2 : HF is not sure if the test can work as internded on all the platforms
ndb_index_ordered : Bug#38370 The test ndb.ndb_index_ordered fails with the community features on
# the below testcase have been reworked to avoid the bug, test contains comment, keep bug open
# the below testcase have been reworked to avoid the bug, test contains comment, keep bug open
mysql-test/t/func_group.test
View file @
d1fb7dad
...
@@ -933,5 +933,45 @@ SELECT AVG(a), CAST(AVG(a) AS DECIMAL) FROM t1;
...
@@ -933,5 +933,45 @@ SELECT AVG(a), CAST(AVG(a) AS DECIMAL) FROM t1;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
#
# Bug #37348: Crash in or immediately after JOIN::make_sum_func_list
#
CREATE
TABLE
derived1
(
a
bigint
(
21
));
INSERT
INTO
derived1
VALUES
(
2
);
CREATE
TABLE
D
(
pk
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
int_nokey
int
(
11
)
DEFAULT
NULL
,
int_key
int
(
11
)
DEFAULT
NULL
,
filler
blob
,
PRIMARY
KEY
(
pk
),
KEY
int_key
(
int_key
)
);
INSERT
INTO
D
VALUES
(
39
,
40
,
4
,
repeat
(
' X'
,
42
)),
(
43
,
56
,
4
,
repeat
(
' X'
,
42
)),
(
47
,
12
,
4
,
repeat
(
' X'
,
42
)),
(
71
,
28
,
4
,
repeat
(
' X'
,
42
)),
(
76
,
54
,
4
,
repeat
(
' X'
,
42
)),
(
83
,
45
,
4
,
repeat
(
' X'
,
42
)),
(
105
,
53
,
12
,
NULL
);
SELECT
(
SELECT
COUNT
(
int_nokey
)
FROM
derived1
AS
X
WHERE
X
.
int_nokey
<
61
GROUP
BY
pk
LIMIT
1
)
FROM
D
AS
X
WHERE
X
.
int_key
<
13
GROUP
BY
int_nokey
LIMIT
1
;
DROP
TABLE
derived1
;
DROP
TABLE
D
;
###
###
--
echo
End
of
5.0
tests
--
echo
End
of
5.0
tests
sql/item.cc
View file @
d1fb7dad
...
@@ -1338,6 +1338,7 @@ public:
...
@@ -1338,6 +1338,7 @@ public:
else
else
Item_ident
::
print
(
str
,
query_type
);
Item_ident
::
print
(
str
,
query_type
);
}
}
virtual
Ref_Type
ref_type
()
{
return
AGGREGATE_REF
;
}
};
};
...
...
sql/item.h
View file @
d1fb7dad
...
@@ -2126,7 +2126,7 @@ class Item_ref :public Item_ident
...
@@ -2126,7 +2126,7 @@ class Item_ref :public Item_ident
protected:
protected:
void
set_properties
();
void
set_properties
();
public:
public:
enum
Ref_Type
{
REF
,
DIRECT_REF
,
VIEW_REF
,
OUTER_REF
};
enum
Ref_Type
{
REF
,
DIRECT_REF
,
VIEW_REF
,
OUTER_REF
,
AGGREGATE_REF
};
Field
*
result_field
;
/* Save result here */
Field
*
result_field
;
/* Save result here */
Item
**
ref
;
Item
**
ref
;
Item_ref
(
Name_resolution_context
*
context_arg
,
Item_ref
(
Name_resolution_context
*
context_arg
,
...
...
sql/mysqld.cc
View file @
d1fb7dad
...
@@ -7535,13 +7535,13 @@ static void mysql_init_variables(void)
...
@@ -7535,13 +7535,13 @@ static void mysql_init_variables(void)
have_community_features
=
SHOW_OPTION_YES
;
have_community_features
=
SHOW_OPTION_YES
;
#else
#else
have_community_features
=
SHOW_OPTION_NO
;
have_community_features
=
SHOW_OPTION_NO
;
#endif
global_system_variables
.
ndb_index_stat_enable
=
FALSE
;
global_system_variables
.
ndb_index_stat_enable
=
FALSE
;
max_system_variables
.
ndb_index_stat_enable
=
TRUE
;
max_system_variables
.
ndb_index_stat_enable
=
TRUE
;
global_system_variables
.
ndb_index_stat_cache_entries
=
32
;
global_system_variables
.
ndb_index_stat_cache_entries
=
32
;
max_system_variables
.
ndb_index_stat_cache_entries
=~
0L
;
max_system_variables
.
ndb_index_stat_cache_entries
=~
0L
;
global_system_variables
.
ndb_index_stat_update_freq
=
20
;
global_system_variables
.
ndb_index_stat_update_freq
=
20
;
max_system_variables
.
ndb_index_stat_update_freq
=~
0L
;
max_system_variables
.
ndb_index_stat_update_freq
=~
0L
;
#endif
#ifdef HAVE_OPENSSL
#ifdef HAVE_OPENSSL
have_ssl
=
SHOW_OPTION_YES
;
have_ssl
=
SHOW_OPTION_YES
;
#else
#else
...
...
sql/sql_select.cc
View file @
d1fb7dad
...
@@ -14804,6 +14804,7 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
...
@@ -14804,6 +14804,7 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
Item
*
pos
;
Item
*
pos
;
List_iterator_fast
<
Item
>
li
(
all_fields
);
List_iterator_fast
<
Item
>
li
(
all_fields
);
Copy_field
*
copy
=
NULL
;
Copy_field
*
copy
=
NULL
;
IF_DBUG
(
Copy_field
*
copy_start
);
res_selected_fields
.
empty
();
res_selected_fields
.
empty
();
res_all_fields
.
empty
();
res_all_fields
.
empty
();
List_iterator_fast
<
Item
>
itr
(
res_all_fields
);
List_iterator_fast
<
Item
>
itr
(
res_all_fields
);
...
@@ -14816,12 +14817,19 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
...
@@ -14816,12 +14817,19 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
goto
err2
;
goto
err2
;
param
->
copy_funcs
.
empty
();
param
->
copy_funcs
.
empty
();
IF_DBUG
(
copy_start
=
copy
);
for
(
i
=
0
;
(
pos
=
li
++
);
i
++
)
for
(
i
=
0
;
(
pos
=
li
++
);
i
++
)
{
{
Field
*
field
;
Field
*
field
;
uchar
*
tmp
;
uchar
*
tmp
;
Item
*
real_pos
=
pos
->
real_item
();
Item
*
real_pos
=
pos
->
real_item
();
if
(
real_pos
->
type
()
==
Item
::
FIELD_ITEM
)
/*
Aggregate functions can be substituted for fields (by e.g. temp tables).
We need to filter those substituted fields out.
*/
if
(
real_pos
->
type
()
==
Item
::
FIELD_ITEM
&&
!
(
real_pos
!=
pos
&&
((
Item_ref
*
)
pos
)
->
ref_type
()
==
Item_ref
::
AGGREGATE_REF
))
{
{
Item_field
*
item
;
Item_field
*
item
;
if
(
!
(
item
=
new
Item_field
(
thd
,
((
Item_field
*
)
real_pos
))))
if
(
!
(
item
=
new
Item_field
(
thd
,
((
Item_field
*
)
real_pos
))))
...
@@ -14868,6 +14876,7 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
...
@@ -14868,6 +14876,7 @@ setup_copy_fields(THD *thd, TMP_TABLE_PARAM *param,
goto
err
;
goto
err
;
if
(
copy
)
if
(
copy
)
{
{
DBUG_ASSERT
(
param
->
field_count
>
(
uint
)
(
copy
-
copy_start
));
copy
->
set
(
tmp
,
item
->
result_field
);
copy
->
set
(
tmp
,
item
->
result_field
);
item
->
result_field
->
move_field
(
copy
->
to_ptr
,
copy
->
to_null_ptr
,
1
);
item
->
result_field
->
move_field
(
copy
->
to_ptr
,
copy
->
to_null_ptr
,
1
);
#ifdef HAVE_purify
#ifdef HAVE_purify
...
...
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